9 lines
190 B
C++
9 lines
190 B
C++
#ifndef PKMNLIB_TIMEOFDAY_HPP
|
|
#define PKMNLIB_TIMEOFDAY_HPP
|
|
|
|
namespace PkmnLib::Library {
|
|
ENUM(TimeOfDay, uint8_t, Night, Morning, Afternoon, Evening)
|
|
}
|
|
|
|
#endif // PKMNLIB_TIMEOFDAY_HPP
|