blob: 233dbadda2ea338c6f0b65fb343dfa16651fe8fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef GUARD_PLAY_TIME_H
#define GUARD_PLAY_TIME_H
#include "global.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
|