21 lines
954 B
C++
21 lines
954 B
C++
#ifndef PKMNLIB_STATISTIC_HPP
|
|
#define PKMNLIB_STATISTIC_HPP
|
|
|
|
#include <CreatureLib/Core/Statistic.hpp>
|
|
namespace PkmnLib::Library {
|
|
class Statistic {
|
|
public:
|
|
static constexpr const CreatureLib::Core::Statistic HealthPoints = CreatureLib::Core::Statistic::Health;
|
|
static constexpr const CreatureLib::Core::Statistic PhysicalAttack =
|
|
CreatureLib::Core::Statistic::PhysicalAttack;
|
|
static constexpr const CreatureLib::Core::Statistic PhysicalDefense =
|
|
CreatureLib::Core::Statistic::PhysicalDefense;
|
|
static constexpr const CreatureLib::Core::Statistic SpecialAttack = CreatureLib::Core::Statistic::MagicalAttack;
|
|
static constexpr const CreatureLib::Core::Statistic SpecialDefense =
|
|
CreatureLib::Core::Statistic::MagicalDefense;
|
|
static constexpr const CreatureLib::Core::Statistic Speed = CreatureLib::Core::Statistic::Speed;
|
|
};
|
|
}
|
|
|
|
#endif // PKMNLIB_STATISTIC_HPP
|