Fixes project being completely dirty every build requiring constant full rebuilds and slowing down tooling.
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: Deukhoofd <Deukhoofd@gmail.com>
This commit is contained in:
2021-10-30 14:24:38 +02:00
parent d55b40f3d0
commit e1d8348b2f
33 changed files with 69 additions and 53 deletions

View File

@@ -1,4 +1,5 @@
#include "CreatureSpecies.hpp"
#include <Arbutils/Collections/Dictionary.hpp>
using namespace CreatureLib::Library;

View File

@@ -1,4 +1,5 @@
#include "LearnableAttacks.hpp"
#include <Arbutils/Collections/Dictionary.hpp>
namespace CreatureLib::Library {
struct LearnableAttacks::impl {

View File

@@ -1,7 +1,9 @@
#ifndef CREATURELIB_LEARNABLEATTACKS_HPP
#define CREATURELIB_LEARNABLEATTACKS_HPP
#include <Arbutils/Memory/Memory.hpp>
#include <Arbutils/Random.hpp>
#include <optional>
#include "../Attacks/AttackData.hpp"
namespace CreatureLib::Library {