mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-10 21:17:14 +00:00
17 lines
261 B
C++
17 lines
261 B
C++
#pragma once
|
|
|
|
#include "Mob.h"
|
|
|
|
class Level;
|
|
|
|
class FlyingMob : public Mob {
|
|
public:
|
|
FlyingMob(Level* level);
|
|
|
|
protected:
|
|
virtual void causeFallDamage(float distance);
|
|
|
|
public:
|
|
virtual void travel(float xa, float ya);
|
|
virtual bool onLadder();
|
|
}; |