13 lines
240 B
C++
13 lines
240 B
C++
#ifndef CREATURELIB_DAMAGESOURCE_HPP
|
|
#define CREATURELIB_DAMAGESOURCE_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
namespace CreatureLib::Battling {
|
|
enum class DamageSource : uint8_t {
|
|
AttackDamage,
|
|
};
|
|
}
|
|
|
|
#endif // CREATURELIB_DAMAGESOURCE_HPP
|