mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01:00
11 lines
255 B
C
11 lines
255 B
C
|
#ifndef GUARD_PLAY_TIME_H
|
||
|
#define GUARD_PLAY_TIME_H
|
||
|
|
||
|
void PlayTimeCounter_Reset(void);
|
||
|
void PlayTimeCounter_Start(void);
|
||
|
void PlayTimeCounter_Stop(void);
|
||
|
void PlayTimeCounter_Update(void);
|
||
|
void PlayTimeCounter_SetToMax(void);
|
||
|
|
||
|
#endif // GUARD_PLAY_TIME_H
|