SpaceCadetPinball/SpaceCadetPinball/TSound.h

13 lines
179 B
C++

#pragma once
#include "TPinballComponent.h"
class TSound :
public TPinballComponent
{
public:
TSound(TPinballTable* table, int groupIndex);
float Play();
int SoundIndex;
};