Initial support for setting battle choices.
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
15
src/Battling/TurnChoices/TurnChoiceKind.hpp
Normal file
15
src/Battling/TurnChoices/TurnChoiceKind.hpp
Normal file
@@ -0,0 +1,15 @@
|
||||
#ifndef CREATURELIB_TURNCHOICEKIND_HPP
|
||||
#define CREATURELIB_TURNCHOICEKIND_HPP
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
namespace CreatureLib::Battling {
|
||||
enum class TurnChoiceKind : uint8_t {
|
||||
Pass,
|
||||
Attack,
|
||||
Item,
|
||||
Switch,
|
||||
RunAway
|
||||
};
|
||||
}
|
||||
#endif //CREATURELIB_TURNCHOICEKIND_HPP
|
||||
Reference in New Issue
Block a user