summaryrefslogtreecommitdiffstats
path: root/src/Mobs/SnowGolem.h
blob: 9c95e21c57ea8a97dd493c8a75fcf7b91cfdd4d1 (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

#pragma once

#include "AggressiveMonster.h"





class cSnowGolem :
	public cAggressiveMonster
{
	typedef cAggressiveMonster super;
	
public:
	cSnowGolem(void);

	CLASS_PROTODEF(cSnowGolem)
	
	virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override;
	virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override;
} ;