aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/Giant.h
blob: 21798854f421835ea8deb403474870f04230b680 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once
using namespace std;

#include "Monster.h"

class Level;

class Giant : public Monster
{
public:
	eINSTANCEOF GetType() { return eTYPE_GIANT; }
	static Entity *create(Level *level) { return new Giant(level); }

	Giant(Level *level);
	
	int getMaxHealth();
	virtual float getWalkTargetValue(int x, int y, int z);
};