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_BATTLELIBRARY_HPP
#define PKMNLIB_BATTLELIBRARY_HPP
#include <Battling/Library/BattleLibrary.hpp>
#include <CreatureLib/Battling/Library/BattleLibrary.hpp>
#include "../../Library/PokemonLibrary.hpp"
#include "DamageLibrary.hpp"
#include "StatCalculator.hpp"

View File

@@ -1,7 +1,7 @@
#ifndef PKMNLIB_DAMAGELIBRARY_HPP
#define PKMNLIB_DAMAGELIBRARY_HPP
#include <Battling/Library/DamageLibrary.hpp>
#include <CreatureLib/Battling/Library/DamageLibrary.hpp>
namespace PkmnLib::Battling {
class DamageLibrary : public CreatureLib::Battling::DamageLibrary {
public:

View File

@@ -1,7 +1,7 @@
#ifndef PKMNLIB_STATCALCULATOR_HPP
#define PKMNLIB_STATCALCULATOR_HPP
#include <Battling/Library/BattleStatCalculator.hpp>
#include <CreatureLib/Battling/Library/BattleStatCalculator.hpp>
#include "../../Library/Statistic.hpp"
namespace PkmnLib::Battling {