mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-07-13 14:41:57 -05:00
12 lines
218 B
C
12 lines
218 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
|