mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-06-06 06:53:03 +00:00
16 lines
321 B
C++
16 lines
321 B
C++
#pragma once
|
|
|
|
#include "minecraft/world/entity/Creature.h"
|
|
#include "minecraft/world/entity/Mob.h"
|
|
|
|
class Level;
|
|
|
|
class AmbientCreature : public Mob, public Creature {
|
|
public:
|
|
AmbientCreature(Level* level);
|
|
|
|
virtual bool canBeLeashed();
|
|
|
|
protected:
|
|
virtual bool mobInteract(std::shared_ptr<Player> player);
|
|
}; |