mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-11 12:17:15 +00:00
14 lines
264 B
C++
14 lines
264 B
C++
#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(std::shared_ptr<Player> player);
|
|
}; |