summaryrefslogtreecommitdiffstats
path: root/src/Mobs/NewCaveSpider.h
blob: 3e52189a066cf3cbfea2e8f362f2c220d46a53a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#pragma once

#include "NewMonster.h"





class cNewCaveSpider :
	public cNewMonster
{
	typedef cNewMonster super;
	
public:
	cNewCaveSpider(void);

	CLASS_PROTODEF(cNewCaveSpider)

	virtual void Tick(float a_Dt, cChunk & a_Chunk) override;
	virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
} ;