1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2025-09-07 16:50:15 +02:00

TLight, TTimer, TSound, TComponentGroup ready.

This commit is contained in:
oz 2021-01-01 16:14:11 +03:00
parent a143b820af
commit 230c981144
11 changed files with 515 additions and 23 deletions

View file

@ -1,11 +1,12 @@
#pragma once
#include "TPinballComponent.h"
class TSound :
public TPinballComponent
public TPinballComponent
{
public:
TSound(TPinballTable* table, int groupIndex) : TPinballComponent(table, groupIndex, true)
{
}
};
TSound(TPinballTable* table, int groupIndex);
float Play();
int SoundIndex;
};