1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2024-06-17 12:23:20 +02:00
SpaceCadetPinball/SpaceCadetPinball/TSound.h
2022-05-30 11:23:47 +03:00

13 lines
227 B
C++

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