Change DamageSource enum to Arbutils Enum.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
a200c7cde8
commit
88d55998d0
|
@ -1,12 +1,11 @@
|
||||||
#ifndef CREATURELIB_DAMAGESOURCE_HPP
|
#ifndef CREATURELIB_DAMAGESOURCE_HPP
|
||||||
#define CREATURELIB_DAMAGESOURCE_HPP
|
#define CREATURELIB_DAMAGESOURCE_HPP
|
||||||
|
|
||||||
|
#include <Arbutils/Enum.hpp>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
|
||||||
namespace CreatureLib::Battling {
|
namespace CreatureLib::Battling {
|
||||||
enum class DamageSource : uint8_t {
|
ENUM(DamageSource, uint8_t, AttackDamage);
|
||||||
AttackDamage,
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // CREATURELIB_DAMAGESOURCE_HPP
|
#endif // CREATURELIB_DAMAGESOURCE_HPP
|
||||||
|
|
Loading…
Reference in New Issue