Update CreatureLib headers, move header files to PkmnLib subdirectory.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-02-08 19:22:29 +01:00
parent c55524be69
commit 61e9c9ba1f
27 changed files with 31 additions and 31 deletions

View File

@@ -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>

View File

@@ -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:

View File

@@ -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 {

View File

@@ -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 {

View File

@@ -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 {

View File

@@ -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 {

View File

@@ -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:

View File

@@ -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"

View File

@@ -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"

View File

@@ -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 {

View File

@@ -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"

View File

@@ -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 {

View File

@@ -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: