diff options
author | peterbell10 <peterbell10@live.co.uk> | 2017-08-03 15:34:19 +0200 |
---|---|---|
committer | Lukas Pioch <lukas@zgow.de> | 2017-08-03 15:34:19 +0200 |
commit | 759618b0356a357d06a89f4348437a8de52d2078 (patch) | |
tree | c6e7ff67ec4c058deedd64f0a131affd11510321 /src/Mobs | |
parent | Removed unused forward declarations (#3888) (diff) | |
download | cuberite-759618b0356a357d06a89f4348437a8de52d2078.tar cuberite-759618b0356a357d06a89f4348437a8de52d2078.tar.gz cuberite-759618b0356a357d06a89f4348437a8de52d2078.tar.bz2 cuberite-759618b0356a357d06a89f4348437a8de52d2078.tar.lz cuberite-759618b0356a357d06a89f4348437a8de52d2078.tar.xz cuberite-759618b0356a357d06a89f4348437a8de52d2078.tar.zst cuberite-759618b0356a357d06a89f4348437a8de52d2078.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Mobs/Bat.cpp | 1 | ||||
-rw-r--r-- | src/Mobs/Guardian.cpp | 1 | ||||
-rw-r--r-- | src/Mobs/Monster.h | 1 | ||||
-rw-r--r-- | src/Mobs/Path.cpp | 2 | ||||
-rw-r--r-- | src/Mobs/Sheep.cpp | 1 | ||||
-rw-r--r-- | src/Mobs/Squid.cpp | 1 |
6 files changed, 0 insertions, 7 deletions
diff --git a/src/Mobs/Bat.cpp b/src/Mobs/Bat.cpp index 5fa8ffc9b..e419ceb2d 100644 --- a/src/Mobs/Bat.cpp +++ b/src/Mobs/Bat.cpp @@ -2,7 +2,6 @@ #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules #include "Bat.h" -#include "../Vector3.h" #include "../Chunk.h" diff --git a/src/Mobs/Guardian.cpp b/src/Mobs/Guardian.cpp index 5e98094b1..3dbec9928 100644 --- a/src/Mobs/Guardian.cpp +++ b/src/Mobs/Guardian.cpp @@ -2,7 +2,6 @@ #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules #include "Guardian.h" -#include "../Vector3.h" #include "../Chunk.h" diff --git a/src/Mobs/Monster.h b/src/Mobs/Monster.h index 121bf3406..1507598bb 100644 --- a/src/Mobs/Monster.h +++ b/src/Mobs/Monster.h @@ -3,7 +3,6 @@ #include "../Entities/Pawn.h" #include "../Defines.h" -#include "../BlockID.h" #include "../Item.h" #include "../Enchantments.h" #include "MonsterTypes.h" diff --git a/src/Mobs/Path.cpp b/src/Mobs/Path.cpp index 9f34e73d9..9c423684f 100644 --- a/src/Mobs/Path.cpp +++ b/src/Mobs/Path.cpp @@ -1,8 +1,6 @@ #include "Globals.h" -#include <cmath> - #include "Path.h" #include "../Chunk.h" diff --git a/src/Mobs/Sheep.cpp b/src/Mobs/Sheep.cpp index 4adcedae9..fef1adac6 100644 --- a/src/Mobs/Sheep.cpp +++ b/src/Mobs/Sheep.cpp @@ -2,7 +2,6 @@ #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules #include "Sheep.h" -#include "../BlockID.h" #include "../Entities/Player.h" #include "../World.h" #include "../EffectID.h" diff --git a/src/Mobs/Squid.cpp b/src/Mobs/Squid.cpp index cab409cb3..00cc07e14 100644 --- a/src/Mobs/Squid.cpp +++ b/src/Mobs/Squid.cpp @@ -2,7 +2,6 @@ #include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules #include "Squid.h" -#include "../Vector3.h" #include "../Chunk.h" |