Files
CreatureLib/src/Library/Statistic.hpp
Deukhoofd e1d8348b2f
All checks were successful
continuous-integration/drone/push Build is passing
Fixes project being completely dirty every build requiring constant full rebuilds and slowing down tooling.
Signed-off-by: Deukhoofd <Deukhoofd@gmail.com>
2021-10-30 14:24:38 +02:00

10 lines
278 B
C++

#ifndef CREATURELIB_STATISTIC_HPP
#define CREATURELIB_STATISTIC_HPP
#include <Arbutils/Enum.hpp>
namespace CreatureLib::Library {
ENUM(Statistic, uint8_t, Health, PhysicalAttack, PhysicalDefense, MagicalAttack, MagicalDefense, Speed)
}
#endif // CREATURELIB_STATISTIC_HPP