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

class cEntity;

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