mirror of
https://github.com/pret/pokediamond.git
synced 2026-04-24 23:17:08 -05:00
18 lines
334 B
C
18 lines
334 B
C
#ifndef POKEDIAMOND_IGT_H
|
|
#define POKEDIAMOND_IGT_H
|
|
|
|
#include "nitro/types.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
|