1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2024-11-17 15:20:17 +01:00
SpaceCadetPinball/SpaceCadetPinball/TGate.h

13 lines
239 B
C++

#pragma once
#include "TCollisionComponent.h"
class TGate :
public TCollisionComponent
{
public:
TGate(TPinballTable* table, int groupIndex);
int Message(MessageCode code, float value) override;
int SoundIndex4;
int SoundIndex3;
};