mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-07-21 05:47:06 +00:00
13 lines
270 B
C++
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;
|
|
} |