mirror of
https://github.com/pret/pokeruby.git
synced 2024-11-27 15:01:11 +00:00
4258e60771
* Declare more non-static functions in header files * Use `(void)` for functions without arguments. * Move global-included data to seperate headers * Don't import types or global in header * Fix fieldmap imports * Revert in-code changes * Add missing newlines
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
|