the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3#include "Mob.h"
4
5class Level;
6
7class FlyingMob : public Mob
8{
9public:
10 FlyingMob(Level *level);
11
12protected:
13 virtual void causeFallDamage(float distance);
14 virtual void checkFallDamage(double ya, bool onGround);
15
16public:
17 virtual void travel(float xa, float ya);
18 virtual bool onLadder();
19};