12 lines
298 B
C++
12 lines
298 B
C++
#ifndef CREATURELIB_STATISTIC_HPP
|
|
#define CREATURELIB_STATISTIC_HPP
|
|
|
|
#include <Arbutils/Enum.hpp>
|
|
#include <cstdint>
|
|
|
|
namespace CreatureLib::Library {
|
|
ENUM(Statistic, uint8_t, Health, PhysicalAttack, PhysicalDefense, MagicalAttack, MagicalDefense, Speed)
|
|
}
|
|
|
|
#endif // CREATURELIB_STATISTIC_HPP
|