All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: Deukhoofd <Deukhoofd@gmail.com>
10 lines
364 B
C++
10 lines
364 B
C++
#ifndef CREATURELIB_EVENTDATAKIND_HPP
|
|
#define CREATURELIB_EVENTDATAKIND_HPP
|
|
|
|
namespace CreatureLib::Battling {
|
|
ENUM(EventDataKind, uint8_t, Damage, Heal, Faint, Switch, TurnStart, TurnEnd, ExperienceGain, Miss, DisplayText,
|
|
ChangeSpecies, ChangeVariant, AttackUse, ChangeStatBoost, Fail, Swap, StatusChange)
|
|
}
|
|
|
|
#endif // CREATURELIB_EVENTDATAKIND_HPP
|