1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2024-06-26 07:42:10 +02:00
SpaceCadetPinball/SpaceCadetPinball/TBlocker.h
2021-01-20 17:28:48 +03:00

19 lines
347 B
C++

#pragma once
#include "TCollisionComponent.h"
class TBlocker :
public TCollisionComponent
{
public:
TBlocker(TPinballTable* table, int groupIndex);
int Message(int code, float value) override;
static void TimerExpired(int timerId, void* caller);
int TurnOnMsgValue;
int TurnOffMsgValue;
int Timer;
int SoundIndex4;
int SoundIndex3;
};