summaryrefslogtreecommitdiffstats
path: root/source/cWorld.cpp
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-09-23 22:53:08 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-09-23 22:53:08 +0200
commit16f44ab7de445e153d949a611104f9ca1cac265c (patch)
tree8abf5a3442a1877855f2c80d9482611a04922683 /source/cWorld.cpp
parentSource files cleanup: WorldStorage-related files in a separate subfolder (diff)
downloadcuberite-16f44ab7de445e153d949a611104f9ca1cac265c.tar
cuberite-16f44ab7de445e153d949a611104f9ca1cac265c.tar.gz
cuberite-16f44ab7de445e153d949a611104f9ca1cac265c.tar.bz2
cuberite-16f44ab7de445e153d949a611104f9ca1cac265c.tar.lz
cuberite-16f44ab7de445e153d949a611104f9ca1cac265c.tar.xz
cuberite-16f44ab7de445e153d949a611104f9ca1cac265c.tar.zst
cuberite-16f44ab7de445e153d949a611104f9ca1cac265c.zip
Diffstat (limited to 'source/cWorld.cpp')
-rw-r--r--source/cWorld.cpp35
1 files changed, 19 insertions, 16 deletions
diff --git a/source/cWorld.cpp b/source/cWorld.cpp
index fecda733a..4a7ff2fc7 100644
--- a/source/cWorld.cpp
+++ b/source/cWorld.cpp
@@ -20,22 +20,25 @@
#include "cFireSimulator.h"
#include "cSandSimulator.h"
#include "cRedstoneSimulator.h"
-#include "cChicken.h"
-#include "cSpider.h"
-#include "cCow.h" //cow
-#include "cSquid.h" //Squid
-#include "cWolf.h" //wolf
-#include "cSlime.h" //slime
-#include "cSkeleton.h" //Skeleton
-#include "cSilverfish.h" //Silverfish
-#include "cPig.h" //pig
-#include "cSheep.h" //sheep
-#include "cZombie.h" //zombie
-#include "cEnderman.h" //enderman
-#include "cCreeper.h" //creeper
-#include "cCavespider.h" //cavespider
-#include "cGhast.h" //Ghast
-#include "cZombiepigman.h" //Zombiepigman
+
+// Mobs:
+#include "Mobs/Chicken.h"
+#include "Mobs/Spider.h"
+#include "Mobs/Cow.h"
+#include "Mobs/Squid.h"
+#include "Mobs/Wolf.h"
+#include "Mobs/Slime.h"
+#include "Mobs/Skeleton.h"
+#include "Mobs/Silverfish.h"
+#include "Mobs/Pig.h"
+#include "Mobs/Sheep.h"
+#include "Mobs/Zombie.h"
+#include "Mobs/Enderman.h"
+#include "Mobs/Creeper.h"
+#include "Mobs/Cavespider.h"
+#include "Mobs/Ghast.h"
+#include "Mobs/Zombiepigman.h"
+
#include "cMakeDir.h"
#include "MersenneTwister.h"
#include "cTracer.h"