Files
pokediamond/include/igt.h
T
2023-08-16 23:51:56 +01:00

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