CreatureLib/src/Core/Statistic.hpp

18 lines
320 B
C++

#ifndef CREATURELIB_STATISTIC_HPP
#define CREATURELIB_STATISTIC_HPP
#include <cstdint>
namespace CreatureLib::Core{
enum Statistic : uint8_t {
Health,
PhysicalAttack,
PhysicalDefense,
MagicalAttack,
MagicalDefense,
Speed
};
}
#endif //CREATURELIB_STATISTIC_HPP