1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2024-06-26 07:42:10 +02:00
SpaceCadetPinball/SpaceCadetPinball/timer.h
oz cd4679194c x64 build - no collision bug found(
Either lost in decompilation or introduced in x64 port.
2021-01-29 16:42:05 +03:00

29 lines
521 B
C++

#pragma once
struct timer_struct
{
int TargetTime;
void* Caller;
void (* Callback)(int, void*);
timer_struct* NextTimer;
int TimerId;
};
class timer
{
public:
static int init(int count);
static void uninit();
static int kill(int timerId);
static int set(float time, void* caller, void (* callback)(int, void*));
static int check();
private:
static int SetCount;
static timer_struct* ActiveList;
static int MaxCount;
static int Count;
static timer_struct* FreeList;
static timer_struct* TimerBuffer;
};