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

#include "AggressiveMonster.h"

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

	virtual bool IsA( const char* a_EntityType );

	virtual void Tick(float a_Dt);
	virtual void KilledBy( cEntity* a_Killer );
};