summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Witch.h
blob: f92db79d62eca856841ecefbacbd36804606f674 (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
26
27
28

#pragma once

#include "Monster.h"
#include "../MersenneTwister.h"





class cWitch :
	public cMonster
{
	typedef cMonster super;
	
public:
	cWitch();

	CLASS_PROTODEF(cWitch)

	virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;

	bool IsAngry(void) const {return false; }
} ;