summaryrefslogtreecommitdiff
path: root/include/igt.h
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2020-08-13 08:41:21 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2020-08-13 08:41:21 -0400
commita13a7535cd78a113d23a8cccddced3d5f13ad479 (patch)
tree0a7e672c5a7acc6261ca714538198d80c13fff47 /include/igt.h
parentdd47776b7c311afdbfbb123485ecf2bf695a3c04 (diff)
Decompile igt
Diffstat (limited to 'include/igt.h')
-rw-r--r--include/igt.h16
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