15 lines
254 B
C++
15 lines
254 B
C++
|
#ifndef PKMNLIB_TIMEOFDAY_HPP
|
||
|
#define PKMNLIB_TIMEOFDAY_HPP
|
||
|
|
||
|
#include <cstdint>
|
||
|
namespace PkmnLib::Library{
|
||
|
enum class TimeOfDay : uint8_t {
|
||
|
Night,
|
||
|
Morning,
|
||
|
Afternoon,
|
||
|
Evening
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif // PKMNLIB_TIMEOFDAY_HPP
|