diff options
Diffstat (limited to 'Minecraft.World/AmbientCreature.h')
| -rw-r--r-- | Minecraft.World/AmbientCreature.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Minecraft.World/AmbientCreature.h b/Minecraft.World/AmbientCreature.h new file mode 100644 index 00000000..ac7a75e0 --- /dev/null +++ b/Minecraft.World/AmbientCreature.h @@ -0,0 +1,16 @@ +#pragma once + +#include "Mob.h" +#include "Creature.h" + +class AmbientCreature : public Mob, public Creature +{ + +public: + AmbientCreature(Level *level); + + virtual bool canBeLeashed(); + +protected: + virtual bool mobInteract(shared_ptr<Player> player); +};
\ No newline at end of file |
