CreatureLib/src/Battling/Models/DamageSource.hpp
Deukhoofd a8730d983f
All checks were successful
continuous-integration/drone/push Build is passing
Used ClangFormat style guide I'm happy with.
2019-11-28 12:55:22 +01:00

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