1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 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); };