mirror of
https://github.com/iAmInActions/SpaceCadetPinballPPC.git
synced 2024-11-22 12:10:10 +00:00
19 lines
347 B
C++
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;
|
|
};
|