mirror of
https://github.com/iAmInActions/SpaceCadetPinballPPC.git
synced 2024-11-22 12:10:10 +00:00
14 lines
231 B
C++
14 lines
231 B
C++
#pragma once
|
|
#include "TCollisionComponent.h"
|
|
|
|
class TGate :
|
|
public TCollisionComponent
|
|
{
|
|
public:
|
|
TGate(TPinballTable* table, int groupIndex);
|
|
int Message(int code, float value) override;
|
|
|
|
int SoundIndex4;
|
|
int SoundIndex3;
|
|
};
|