Implements outlines for ItemLibrary, MoveLibrary and implements NatureLibrary.
This commit is contained in:
20
src/Library/Statistic.hpp
Normal file
20
src/Library/Statistic.hpp
Normal file
@@ -0,0 +1,20 @@
|
||||
#ifndef PKMNLIB_STATISTIC_HPP
|
||||
#define PKMNLIB_STATISTIC_HPP
|
||||
|
||||
#include <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
|
||||
Reference in New Issue
Block a user