CreatureLib/src/Core/Statistic.hpp

12 lines
295 B
C++
Raw Normal View History

2019-10-06 11:50:52 +00:00
#ifndef CREATURELIB_STATISTIC_HPP
#define CREATURELIB_STATISTIC_HPP
#include <Arbutils/Enum.hpp>
2019-10-06 11:50:52 +00:00
#include <cstdint>
namespace CreatureLib::Core {
ENUM(Statistic, uint8_t, Health, PhysicalAttack, PhysicalDefense, MagicalAttack, MagicalDefense, Speed)
2019-10-06 11:50:52 +00:00
}
#endif // CREATURELIB_STATISTIC_HPP