From 3c7226a7d7563aed14d1d0e1c48b1a80cdb95ff6 Mon Sep 17 00:00:00 2001 From: Samuel Barney Date: Wed, 20 Aug 2014 08:29:34 -0600 Subject: Revert "Reworked the AIComponent to focus on cMonster instead of the more general cEntity." This reverts commit c7c23085df72cd9fba98b8cbc6348cd55c897f1e. --- src/Entities/Compoments/AIComponent.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Entities/Compoments/AIComponent.h b/src/Entities/Compoments/AIComponent.h index 7ba59ef2c..1659e2304 100644 --- a/src/Entities/Compoments/AIComponent.h +++ b/src/Entities/Compoments/AIComponent.h @@ -1,11 +1,11 @@ #pragma once -#include "../Entities/Entity.h" -#include "../Mobs/Monster.h" + +#include "../Entity.h" class cAIComponent { protected: - cMonster * m_Self; + cEntity * m_Self; public: cAIComponent(cEntity * a_Entity) : m_Self(a_Entity){} -- cgit v1.2.3