Implements system for saving Evolutions.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-01-02 13:45:39 +01:00
parent 23bcec9b75
commit 5dc6695f9e
5 changed files with 141 additions and 0 deletions

14
src/Library/TimeOfDay.hpp Normal file
View File

@@ -0,0 +1,14 @@
#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