Files
DrPerkyLegit-LCEServerTest/Minecraft.World/AmbientCreature.h
2026-05-16 11:30:28 -04:00

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);
};