Further clearer error handling.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-07-31 10:45:20 +02:00
parent b56226076e
commit 5a41208fdb
2 changed files with 11 additions and 5 deletions

View File

@@ -4,6 +4,6 @@
#include <cstdint>
namespace CreatureLib::Battling {
enum class TurnChoiceKind : uint8_t { Pass, Attack, Item, Switch, Flee };
ENUM(TurnChoiceKind, uint8_t, Pass, Attack, Item, Switch, Flee);
}
#endif // CREATURELIB_TURNCHOICEKIND_HPP