2020-11-01 15:45:29 +00:00
|
|
|
#pragma once
|
2020-11-28 12:59:42 +00:00
|
|
|
#include "TCollisionComponent.h"
|
|
|
|
|
2020-11-01 15:45:29 +00:00
|
|
|
class TBlocker :
|
2020-11-28 12:59:42 +00:00
|
|
|
public TCollisionComponent
|
2020-11-01 15:45:29 +00:00
|
|
|
{
|
|
|
|
public:
|
2021-01-16 14:45:29 +00:00
|
|
|
TBlocker(TPinballTable* table, int groupIndex);
|
|
|
|
int Message(int code, float value) override;
|
|
|
|
|
|
|
|
static void TimerExpired(int timerId, void* caller);
|
|
|
|
|
2021-01-20 14:28:48 +00:00
|
|
|
int TurnOnMsgValue;
|
|
|
|
int TurnOffMsgValue;
|
2021-01-16 14:45:29 +00:00
|
|
|
int Timer;
|
|
|
|
int SoundIndex4;
|
|
|
|
int SoundIndex3;
|
2020-11-01 15:45:29 +00:00
|
|
|
};
|