diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-08-13 08:41:21 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-08-13 08:41:21 -0400 |
commit | a13a7535cd78a113d23a8cccddced3d5f13ad479 (patch) | |
tree | 0a7e672c5a7acc6261ca714538198d80c13fff47 /include/igt.h | |
parent | dd47776b7c311afdbfbb123485ecf2bf695a3c04 (diff) |
Decompile igt
Diffstat (limited to 'include/igt.h')
-rw-r--r-- | include/igt.h | 16 |
1 files changed, 16 insertions, 0 deletions
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 |