summaryrefslogtreecommitdiffstats
path: root/src/Entities/Compoments/AIComponent.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Entities/Compoments/AIComponent.h')
-rw-r--r--src/Entities/Compoments/AIComponent.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Entities/Compoments/AIComponent.h b/src/Entities/Compoments/AIComponent.h
new file mode 100644
index 000000000..483fe4164
--- /dev/null
+++ b/src/Entities/Compoments/AIComponent.h
@@ -0,0 +1,14 @@
+#pragma once
+
+#include "../Entity.h"
+
+class cAIComponent
+{
+protected:
+ cEntity * m_Self;
+public:
+ cAIComponent(cEntity * a_Entity) : m_Self(a_Entity){}
+
+ virtual void Tick(float a_Dt, cChunk & a_Chunk){}
+
+}; \ No newline at end of file