diff options
author | Akira Akashi <rubenru09@aol.com> | 2021-05-26 03:30:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-26 03:30:42 +0100 |
commit | ee7aa44008bebf78301dd0f9d99306dc1a1b6502 (patch) | |
tree | 962ac39843c509cd6cbff6a85287258a3a9f3a5b /include/gf_rtc.h | |
parent | 10bb8f2d4317fd606fef6c0d3b7345fd324fe583 (diff) | |
parent | 7d10ba28169226bf00b741f7d01bc3386b383343 (diff) |
Merge branch 'master' into unkk_020851B8
Diffstat (limited to 'include/gf_rtc.h')
-rw-r--r-- | include/gf_rtc.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/include/gf_rtc.h b/include/gf_rtc.h new file mode 100644 index 00000000..f7a4e2a7 --- /dev/null +++ b/include/gf_rtc.h @@ -0,0 +1,31 @@ +#ifndef POKEDIAMOND_GF_RTC_H
+#define POKEDIAMOND_GF_RTC_H
+
+#include "RTC_api.h"
+
+enum RTC_Month
+{
+ RTC_MONTH_JANUARY = 1,
+ RTC_MONTH_FEBRUARY,
+ RTC_MONTH_MARCH,
+ RTC_MONTH_APRIL,
+ RTC_MONTH_MAY,
+ RTC_MONTH_JUNE,
+ RTC_MONTH_JULY,
+ RTC_MONTH_AUGUST,
+ RTC_MONTH_SEPTEMBER,
+ RTC_MONTH_OCTOBER,
+ RTC_MONTH_NOVEMBER,
+ RTC_MONTH_DECEMBER,
+};
+
+enum RTC_TimeOfDay
+{
+ RTC_TIMEOFDAY_MORN = 0,
+ RTC_TIMEOFDAY_DAY,
+ RTC_TIMEOFDAY_EVE,
+ RTC_TIMEOFDAY_NITE,
+ RTC_TIMEOFDAY_LATE,
+};
+
+#endif //POKEDIAMOND_GF_RTC_H
|