mirror of
https://github.com/pret/pokediamond.git
synced 2026-08-07 11:14:05 -05:00
17 lines
299 B
C
17 lines
299 B
C
#ifndef POKEDIAMOND_IGT_H
|
|
#define POKEDIAMOND_IGT_H
|
|
|
|
struct IGT
|
|
{
|
|
u16 hours;
|
|
u8 minutes;
|
|
u8 seconds;
|
|
};
|
|
|
|
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
|