All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: Deukhoofd <Deukhoofd@gmail.com>
10 lines
278 B
C++
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
|