Update CreatureLib headers, move header files to PkmnLib subdirectory.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
#ifndef PKMNLIB_EVOLUTIONDATA_HPP
|
||||
#define PKMNLIB_EVOLUTIONDATA_HPP
|
||||
|
||||
#include <Library/Gender.hpp>
|
||||
#include <CreatureLib/Library/Gender.hpp>
|
||||
#include <any>
|
||||
#include <string>
|
||||
#include <utility>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef PKMNLIB_ITEM_HPP
|
||||
#define PKMNLIB_ITEM_HPP
|
||||
|
||||
#include <Library/Items/Item.hpp>
|
||||
#include <CreatureLib/Library/Items/Item.hpp>
|
||||
namespace PkmnLib::Library {
|
||||
class Item : public CreatureLib::Library::Item {
|
||||
public:
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef PKMNLIB_ITEMLIBRARY_HPP
|
||||
#define PKMNLIB_ITEMLIBRARY_HPP
|
||||
|
||||
#include <Library/ItemLibrary.hpp>
|
||||
#include <CreatureLib/Library/ItemLibrary.hpp>
|
||||
#include "Item.hpp"
|
||||
namespace PkmnLib::Library {
|
||||
class ItemLibrary : public CreatureLib::Library::ItemLibrary {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef PKMNLIB_LIBRARYSETTINGS_HPP
|
||||
#define PKMNLIB_LIBRARYSETTINGS_HPP
|
||||
|
||||
#include <Library/LibrarySettings.hpp>
|
||||
#include <CreatureLib/Library/LibrarySettings.hpp>
|
||||
|
||||
namespace PkmnLib::Library {
|
||||
class LibrarySettings : public CreatureLib::Library::LibrarySettings {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef PKMNLIB_MOVEDATA_HPP
|
||||
#define PKMNLIB_MOVEDATA_HPP
|
||||
|
||||
#include <Library/Attacks/AttackData.hpp>
|
||||
#include <CreatureLib/Library/Attacks/AttackData.hpp>
|
||||
#include "MoveCategory.hpp"
|
||||
|
||||
namespace PkmnLib::Library {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef PKMNLIB_MOVELIBRARY_HPP
|
||||
#define PKMNLIB_MOVELIBRARY_HPP
|
||||
|
||||
#include <Library/AttackLibrary.hpp>
|
||||
#include <CreatureLib/Library/AttackLibrary.hpp>
|
||||
#include "MoveData.hpp"
|
||||
namespace PkmnLib::Library {
|
||||
class MoveLibrary : public CreatureLib::Library::AttackLibrary {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef PKMNLIB_NATURE_HPP
|
||||
#define PKMNLIB_NATURE_HPP
|
||||
|
||||
#include <Core/Statistic.hpp>
|
||||
#include <CreatureLib/Core/Statistic.hpp>
|
||||
namespace PkmnLib::Library {
|
||||
class Nature {
|
||||
private:
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
#ifndef PKMNLIB_NATURELIBRARY_HPP
|
||||
#define PKMNLIB_NATURELIBRARY_HPP
|
||||
|
||||
#include <Core/Exceptions/CreatureException.hpp>
|
||||
#include <Core/Random.hpp>
|
||||
#include <CreatureLib/Core/Exceptions/CreatureException.hpp>
|
||||
#include <CreatureLib/Core/Random.hpp>
|
||||
#include <unordered_map>
|
||||
#include <vector>
|
||||
#include "Nature.hpp"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef PKMNLIB_POKEMONLIBRARY_HPP
|
||||
#define PKMNLIB_POKEMONLIBRARY_HPP
|
||||
|
||||
#include <Library/DataLibrary.hpp>
|
||||
#include <CreatureLib/Library/DataLibrary.hpp>
|
||||
#include "Items/ItemLibrary.hpp"
|
||||
#include "LibrarySettings.hpp"
|
||||
#include "Moves/MoveLibrary.hpp"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef PKMNLIB_POKEMONFORME_HPP
|
||||
#define PKMNLIB_POKEMONFORME_HPP
|
||||
|
||||
#include <Library/CreatureData/SpeciesVariant.hpp>
|
||||
#include <CreatureLib/Library/CreatureData/SpeciesVariant.hpp>
|
||||
|
||||
namespace PkmnLib::Library {
|
||||
class PokemonForme : public CreatureLib::Library::SpeciesVariant {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#ifndef PKMNLIB_POKEMONSPECIES_HPP
|
||||
#define PKMNLIB_POKEMONSPECIES_HPP
|
||||
#include <Battling/Models/Creature.hpp>
|
||||
#include <CreatureLib/Battling/Models/Creature.hpp>
|
||||
#include "../Evolutions/EvolutionData.hpp"
|
||||
#include "PokemonForme.hpp"
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef PKMNLIB_SPECIESLIBRARY_HPP
|
||||
#define PKMNLIB_SPECIESLIBRARY_HPP
|
||||
|
||||
#include <Library/SpeciesLibrary.hpp>
|
||||
#include <CreatureLib/Library/SpeciesLibrary.hpp>
|
||||
#include "PokemonSpecies.hpp"
|
||||
|
||||
namespace PkmnLib::Library {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef PKMNLIB_STATISTIC_HPP
|
||||
#define PKMNLIB_STATISTIC_HPP
|
||||
|
||||
#include <Core/Statistic.hpp>
|
||||
#include <CreatureLib/Core/Statistic.hpp>
|
||||
namespace PkmnLib::Library {
|
||||
class Statistic {
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user