10 lines
254 B
C++
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
|