diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2020-12-17 13:17:58 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-17 13:17:58 -0600 |
commit | 096de8d9b2ffd90c52e790296bfd7c5436d45ca3 (patch) | |
tree | 9c5af2e04dea05221c71946a5dfc06471f77801d /include/time.h | |
parent | bc504264f1e54b3c1e482710c592e5549828bfe1 (diff) | |
parent | f90f3affeb9b0a66aa7df68f5fdecd692033faf9 (diff) |
Merge pull request #12 from SethBarberee/master
Merge work from SethBarberee/pmd-red into pret.
Diffstat (limited to 'include/time.h')
-rw-r--r-- | include/time.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/time.h b/include/time.h new file mode 100644 index 0000000..9aeb28d --- /dev/null +++ b/include/time.h @@ -0,0 +1,20 @@ +#ifndef TIME_H +#define TIME_H + +struct PlayTimeStruct +{ + s16 hours; + u8 minutes; + u8 seconds; + u8 frames; +}; + +void IncrementPlayTime(struct PlayTimeStruct *Time); +void ResetPlayTime(struct PlayTimeStruct *Time); +struct PlayTimeStruct *sub_8094FA0(void); +void DeconstructPlayTime(struct PlayTimeStruct *r0, u32 *outHours, u32 *outMinutes, u32 *outSeconds); +void sub_8094F88(void); + + +#endif // TIME_H + |