mirror of
https://github.com/iAmInActions/SpaceCadetPinballPPC.git
synced 2024-11-10 14:10:08 +00:00
13 lines
179 B
C++
13 lines
179 B
C++
#pragma once
|
|
#include "TPinballComponent.h"
|
|
|
|
class TSound :
|
|
public TPinballComponent
|
|
{
|
|
public:
|
|
TSound(TPinballTable* table, int groupIndex);
|
|
float Play();
|
|
|
|
int SoundIndex;
|
|
};
|