summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Components/AIPassiveComponent.h
blob: ab2e5afdb40d7e95c2bb02302c46dbf5eab3cbb2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once
#include "AIComponent.h"

class cEntity;

class cAIPassiveComponent : public cAIComponent {
	typedef cAIComponent super;
protected:
public:
	cAIPassiveComponent(cMonster * a_Monster);
	virtual void Tick(float a_Dt, cChunk & a_Chunk) /*override*/;
};