2019-10-06 11:50:52 +00:00
|
|
|
#ifndef CREATURELIB_STATISTIC_HPP
|
|
|
|
#define CREATURELIB_STATISTIC_HPP
|
|
|
|
|
|
|
|
#include <cstdint>
|
2020-02-12 18:48:56 +00:00
|
|
|
#include "Enum.hpp"
|
2019-10-06 11:50:52 +00:00
|
|
|
|
2019-11-28 11:55:22 +00:00
|
|
|
namespace CreatureLib::Core {
|
2020-02-12 18:48:56 +00:00
|
|
|
ENUM(Statistic, uint8_t, Health, PhysicalAttack, PhysicalDefense, MagicalAttack, MagicalDefense, Speed)
|
2019-10-06 11:50:52 +00:00
|
|
|
}
|
|
|
|
|
2019-11-28 11:55:22 +00:00
|
|
|
#endif // CREATURELIB_STATISTIC_HPP
|