mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
10 lines
231 B
C
10 lines
231 B
C
#ifndef POKEPLATINUM_TIMER_H
|
|
#define POKEPLATINUM_TIMER_H
|
|
|
|
void Timer_Start(void);
|
|
u64 Timer_GetCurrentTimestamp(void);
|
|
u64 Timer_TicksToSeconds(u64 ticks);
|
|
u64 Timer_TicksToMilliSeconds(u64 ticks);
|
|
|
|
#endif // POKEPLATINUM_TIMER_H
|