summaryrefslogtreecommitdiffstats
path: root/source/Mobs/AggressiveMonster.h
blob: 7d741dc9aa93a4d7481d6c21bfc4a987f30e585b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include "Monster.h"

class cAggressiveMonster : public cMonster
{
public:
	cAggressiveMonster();
	~cAggressiveMonster();

	virtual void Tick(float a_Dt);
	virtual void InStateChasing(float a_Dt);
	
	virtual void EventSeePlayer(cEntity *);
protected:
	float m_ChaseTime;
};