mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-11-17 15:20:17 +01:00
13 lines
239 B
C++
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;
|
|
};
|