summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Zombie.h
blob: 111847ea39ffdbd0f12f0d180a550eae3ba295ec (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
#pragma once

#include "AggressiveMonster.h"





class cZombie:
	public cAggressiveMonster
{
	using Super = cAggressiveMonster;

public:

	cZombie();

	CLASS_PROTODEF(cZombie)

	virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;
	virtual bool IsUndead(void) override { return true; }

} ;