summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Components/AIComponent.h
blob: 3165f6c4f18ee62b4558315baf12cecf1441cfa9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once
#include "../Entities/Entity.h"

class cMonster;

class cAIComponent
{
protected:
	cMonster * m_Self;
public:
	cAIComponent(cMonster * a_Entity);
	virtual ~cAIComponent(){}
	
	virtual void Tick(float a_Dt, cChunk & a_Chunk){}
};