From a13a7535cd78a113d23a8cccddced3d5f13ad479 Mon Sep 17 00:00:00 2001 From: PikalaxALT Date: Thu, 13 Aug 2020 08:41:21 -0400 Subject: Decompile igt --- include/igt.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 include/igt.h (limited to 'include/igt.h') diff --git a/include/igt.h b/include/igt.h new file mode 100644 index 00000000..bf5e5a63 --- /dev/null +++ b/include/igt.h @@ -0,0 +1,16 @@ +#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 -- cgit v1.2.3