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