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