4jcraft/targets/minecraft/world/entity/ambient/AmbientCreature.cpp

13 lines
270 B
C++

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