mirror of
https://github.com/pret/pokediamond.git
synced 2026-09-26 21:35:08 -04:00
17 lines
311 B
C
17 lines
311 B
C
#ifndef POKEDIAMOND_IGT_H
|
|
#define POKEDIAMOND_IGT_H
|
|
|
|
typedef struct IGT
|
|
{
|
|
u16 hours;
|
|
u8 minutes;
|
|
u8 seconds;
|
|
} IGT;
|
|
|
|
void InitIGT(struct IGT * igt);
|
|
void AddIGTSeconds(struct IGT * igt, u32 seconds);
|
|
u16 GetIGTHours(struct IGT * igt);
|
|
u8 GetIGTMinutes(struct IGT * igt);
|
|
|
|
#endif //POKEDIAMOND_IGT_H
|