4jcraft/targets/minecraft/world/entity/ambient/AmbientCreature.cpp
2026-04-01 18:02:06 -05:00

15 lines
311 B
C++

#include "AmbientCreature.h"
#include <memory>
#include "minecraft/world/entity/Mob.h"
class Level;
AmbientCreature::AmbientCreature(Level* level) : Mob(level) {}
bool AmbientCreature::canBeLeashed() { return false; }
bool AmbientCreature::mobInteract(std::shared_ptr<Player> player) {
return false;
}