summaryrefslogtreecommitdiffstats
path: root/src/Entities/Compoments
diff options
context:
space:
mode:
authorSamuel Barney <samjbarney@gmail.com>2014-07-10 22:58:50 +0200
committerSamuel Barney <samjbarney@gmail.com>2014-07-10 22:58:50 +0200
commitbbae8c8586453d0eb7dd52eea18f9782af110f2f (patch)
tree7734c9595de75c6a0415a757f812f05c66b19553 /src/Entities/Compoments
parentMoved some more stuff into AIAgressive. (diff)
downloadcuberite-bbae8c8586453d0eb7dd52eea18f9782af110f2f.tar
cuberite-bbae8c8586453d0eb7dd52eea18f9782af110f2f.tar.gz
cuberite-bbae8c8586453d0eb7dd52eea18f9782af110f2f.tar.bz2
cuberite-bbae8c8586453d0eb7dd52eea18f9782af110f2f.tar.lz
cuberite-bbae8c8586453d0eb7dd52eea18f9782af110f2f.tar.xz
cuberite-bbae8c8586453d0eb7dd52eea18f9782af110f2f.tar.zst
cuberite-bbae8c8586453d0eb7dd52eea18f9782af110f2f.zip
Diffstat (limited to 'src/Entities/Compoments')
-rw-r--r--src/Entities/Compoments/AIComponent.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Entities/Compoments/AIComponent.h b/src/Entities/Compoments/AIComponent.h
index 7ba59ef2c..ac50a5a62 100644
--- a/src/Entities/Compoments/AIComponent.h
+++ b/src/Entities/Compoments/AIComponent.h
@@ -1,6 +1,6 @@
#pragma once
-#include "../Entities/Entity.h"
-#include "../Mobs/Monster.h"
+#include "../Entity.h"
+#include "../../Mobs/Monster.h"
class cAIComponent
{
@@ -10,5 +10,4 @@ public:
cAIComponent(cEntity * a_Entity) : m_Self(a_Entity){}
virtual void Tick(float a_Dt, cChunk & a_Chunk){}
-
};