diff options
Diffstat (limited to 'Minecraft.World/AmbientCreature.cpp')
| -rw-r--r-- | Minecraft.World/AmbientCreature.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Minecraft.World/AmbientCreature.cpp b/Minecraft.World/AmbientCreature.cpp new file mode 100644 index 00000000..9f01f0ec --- /dev/null +++ b/Minecraft.World/AmbientCreature.cpp @@ -0,0 +1,17 @@ +#include "stdafx.h" + +#include "AmbientCreature.h" + +AmbientCreature::AmbientCreature(Level *level) : Mob(level) +{ +} + +bool AmbientCreature::canBeLeashed() +{ + return false; +} + +bool AmbientCreature::mobInteract(shared_ptr<Player> player) +{ + return false; +}
\ No newline at end of file |
