blob: 7ba59ef2cda56d1adc18b1091fda6cbc3e75d29e (
plain) (
tree)
|
|
#pragma once
#include "../Entities/Entity.h"
#include "../Mobs/Monster.h"
class cAIComponent
{
protected:
cMonster * m_Self;
public:
cAIComponent(cEntity * a_Entity) : m_Self(a_Entity){}
virtual void Tick(float a_Dt, cChunk & a_Chunk){}
};
|