mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2023-12-30 21:52:56 +00:00
14 lines
239 B
C++
14 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;
|
|
};
|