diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2020-11-19 11:27:18 -0600 |
---|---|---|
committer | Seth Barberee <seth.barberee@gmail.com> | 2020-11-19 11:27:18 -0600 |
commit | 5f8105180b15f04d48c72df2953d267c87d6148c (patch) | |
tree | 64b6ab71a45c858aee68509e11810d278decd93a /include/time.h | |
parent | 578522b3d344866c38e6e2e01e6b26ba6a5c0107 (diff) |
combining and doc'ing of playtime things
Diffstat (limited to 'include/time.h')
-rw-r--r-- | include/time.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/time.h b/include/time.h new file mode 100644 index 0000000..b052ea1 --- /dev/null +++ b/include/time.h @@ -0,0 +1,19 @@ +#ifndef TIME_H +#define TIME_H + +struct PlayTimeStruct +{ + s16 unk0; + u8 hours; + u8 minutes; + u8 seconds; +}; + +void sub_8094FB4(struct PlayTimeStruct *Time); +void ResetPlayTime(struct PlayTimeStruct *Time); +struct PlayTimeStruct *sub_8094FA0(void); +void sub_8094F88(void); + + +#endif // TIME_H + |