11 lines
251 B
C++
11 lines
251 B
C++
#ifndef CREATURELIB_EVENTDATAKIND_HPP
|
|
#define CREATURELIB_EVENTDATAKIND_HPP
|
|
#include <Arbutils/Enum.hpp>
|
|
|
|
namespace CreatureLib::Battling {
|
|
ENUM(EventDataKind, uint8_t, Damage, Heal, Faint, DisplayText)
|
|
|
|
}
|
|
|
|
#endif // CREATURELIB_EVENTDATAKIND_HPP
|