mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-26 23:58:13 +05:00
16 lines
248 B
C++
16 lines
248 B
C++
#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);
|
|
}; |