mirror of
https://github.com/pret/pokediamond.git
synced 2026-03-22 02:04:25 -05:00
14 lines
286 B
C
14 lines
286 B
C
#ifndef POKEDIAMOND_TIMER3_H
|
|
#define POKEDIAMOND_TIMER3_H
|
|
|
|
#include "global.h"
|
|
|
|
void Init_Timer3();
|
|
void CountUpTimer3();
|
|
u64 internal_GetTimer3Count();
|
|
u64 GetTimer3Count();
|
|
u64 Timer3CountToMilliSeconds(u64 count);
|
|
u64 Timer3CountToSeconds(u64 count);
|
|
|
|
#endif // POKEDIAMOND_TIMER3_H
|