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