1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2024-11-17 23:20:19 +01:00
SpaceCadetPinball/SpaceCadetPinball/TTimer.h

14 lines
259 B
C
Raw Normal View History

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