mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-23 02:35:17 -05:00
13 lines
219 B
C
13 lines
219 B
C
#ifndef POKEPLATINUM_CONSTANTS_TIME_H
|
|
#define POKEPLATINUM_CONSTANTS_TIME_H
|
|
|
|
enum Time {
|
|
TIME_MORNING = 0,
|
|
TIME_DAY,
|
|
TIME_DUSK,
|
|
TIME_NIGHT,
|
|
TIME_MIDNIGHT,
|
|
};
|
|
|
|
#endif // POKEPLATINUM_CONSTANTS_TIME_H
|