Files
CreatureLib/src/Battling/TurnChoices/TurnChoiceKind.hpp
Deukhoofd 5a41208fdb
All checks were successful
continuous-integration/drone/push Build is passing
Further clearer error handling.
2020-07-31 10:45:20 +02:00

10 lines
245 B
C++

#ifndef CREATURELIB_TURNCHOICEKIND_HPP
#define CREATURELIB_TURNCHOICEKIND_HPP
#include <cstdint>
namespace CreatureLib::Battling {
ENUM(TurnChoiceKind, uint8_t, Pass, Attack, Item, Switch, Flee);
}
#endif // CREATURELIB_TURNCHOICEKIND_HPP