Botcraft 1.21.8
Loading...
Searching...
No Matches
FlyingMobEntity.hpp
Go to the documentation of this file.
1#if PROTOCOL_VERSION < 771 /* < 1.21.6 */
2#pragma once
3
5
6namespace Botcraft
7{
8 class FlyingMobEntity : public MobEntity
9 {
10 protected:
11 static constexpr int metadata_count = 0;
12 static constexpr int hierarchy_metadata_count = MobEntity::metadata_count + MobEntity::hierarchy_metadata_count;
13
14 public:
15 FlyingMobEntity();
16 virtual ~FlyingMobEntity();
17
18 virtual bool IsFlyingMob() const override;
19 };
20}
21#endif