12 lines
247 B
C++
12 lines
247 B
C++
#ifndef CREATURELIB_DAMAGESOURCE_HPP
|
|
#define CREATURELIB_DAMAGESOURCE_HPP
|
|
|
|
#include <Arbutils/Enum.hpp>
|
|
#include <cstdint>
|
|
|
|
namespace CreatureLib::Battling {
|
|
ENUM(DamageSource, uint8_t, AttackDamage);
|
|
}
|
|
|
|
#endif // CREATURELIB_DAMAGESOURCE_HPP
|