4jcraft/targets/minecraft/world/entity/ambient/AmbientCreature.cpp
2026-04-01 13:27:58 -05:00

13 lines
270 B
C++

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