aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/AmbientCreature.h
blob: ac7a75e065d23da982022501eb45927aef763267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include "Mob.h"
#include "Creature.h"

class AmbientCreature : public Mob, public Creature
{

public:
	AmbientCreature(Level *level);

	virtual bool canBeLeashed();

protected:
	virtual bool mobInteract(shared_ptr<Player> player);
};