mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-14 03:52:30 +00:00
13 lines
216 B
C++
13 lines
216 B
C++
|
|
#ifndef EVENT_TIMER_HPP
|
||
|
|
#define EVENT_TIMER_HPP
|
||
|
|
|
||
|
|
#include <cstdint>
|
||
|
|
|
||
|
|
class EvtContext;
|
||
|
|
|
||
|
|
int32_t IEvtTimerDispatch(EvtContext* context);
|
||
|
|
|
||
|
|
uint32_t IEvtTimerGetNextTime(EvtContext* context, uint32_t currTime);
|
||
|
|
|
||
|
|
#endif
|