summaryrefslogtreecommitdiffstats
path: root/src/Mobs/WitherSkeleton.h
blob: 41e55e0733a7349c3992d26f47db39f43960fdef (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
29

#pragma once

#include "AggressiveMonster.h"





class cWitherSkeleton:
	public cAggressiveMonster
{
	using Super = cAggressiveMonster;

public:

	cWitherSkeleton();

	CLASS_PROTODEF(cWitherSkeleton)

	virtual bool Attack(std::chrono::milliseconds a_Dt) override;
	virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;
	virtual void SpawnOn(cClientHandle & a_ClientHandle) override;

} ;