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