mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-09-16 05:10:24 +02:00
13 lines
267 B
C++
13 lines
267 B
C++
#pragma once
|
|
#include "TPinballComponent.h"
|
|
|
|
class TTimer :
|
|
public TPinballComponent
|
|
{
|
|
public:
|
|
TTimer(TPinballTable* table, int groupIndex);
|
|
int Message(MessageCode code, float value) override;
|
|
static void TimerExpired(int timerId, void* caller);
|
|
|
|
int Timer;
|
|
};
|