Handle executing moves.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2019-11-03 13:47:50 +01:00
parent fc675efdf5
commit b4e08049ce
7 changed files with 183 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
#ifndef CREATURELIB_DAMAGESOURCE_HPP
#define CREATURELIB_DAMAGESOURCE_HPP
#include <cstdint>
namespace CreatureLib::Battling {
enum class DamageSource : uint8_t {
AttackDamage,
};
}
#endif //CREATURELIB_DAMAGESOURCE_HPP