thunderbrew/src/event/Timer.hpp
2023-01-02 13:17:18 -06:00

12 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