1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2025-09-08 09:10:14 +02:00

TBlocker, TBumper, TFlagSpinner, TGate, THole, TKickback, TWall ready.

This commit is contained in:
oz 2021-01-16 17:45:29 +03:00
parent 61fe0410b0
commit ffd626fbc1
17 changed files with 812 additions and 23 deletions

View file

@ -5,7 +5,9 @@ class TGate :
public TCollisionComponent
{
public:
TGate(TPinballTable* table, int groupIndex) : TCollisionComponent(table, groupIndex, true)
{
}
TGate(TPinballTable* table, int groupIndex);
int Message(int code, float value) override;
int SoundIndex4;
int SoundIndex3;
};