4jcraft/Minecraft.World/Entities/Mobs/AmbientCreature.cpp
2026-03-21 16:29:02 -05:00

11 lines
273 B
C++

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