mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 09:23:37 +00:00
11 lines
273 B
C++
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;
|
|
} |