#ifndef PKMNLIB_STATISTIC_HPP #define PKMNLIB_STATISTIC_HPP #include 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