CreatureLib/src/Battling/TurnChoices/TurnChoiceKind.hpp
Deukhoofd 6ba708ad12
All checks were successful
continuous-integration/drone/push Build is passing
Implements running from battle.
2019-12-15 11:52:10 +01:00

10 lines
254 B
C++

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