LeviLamina
Loading...
Searching...
No Matches
RandomFlyingGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ai/goal/RandomStrollGoal.h"
7
8// auto generated forward declare list
9// clang-format off
10class Mob;
11class Vec3;
12// clang-format on
13
14class RandomFlyingGoal : public ::RandomStrollGoal {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<1, 1, bool> mCanLandOnTrees;
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 RandomFlyingGoal();
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 virtual bool canUse() /*override*/;
29
30 virtual void appendDebugInfo(::std::string& str) const /*override*/;
31
32 virtual bool _setWantedPosition() /*override*/;
33 // NOLINTEND
34
35public:
36 // member functions
37 // NOLINTBEGIN
38 MCAPI RandomFlyingGoal(::Mob& mob, float speed, int xzDist, int yDist, bool canLandOnTrees);
39
40 MCAPI ::std::optional<::Vec3> _getTreePos() const;
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCAPI void* $ctor(::Mob& mob, float speed, int xzDist, int yDist, bool canLandOnTrees);
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCAPI bool $canUse();
53
54 MCAPI void $appendDebugInfo(::std::string& str) const;
55
56 MCAPI bool $_setWantedPosition();
57
58
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
64 MCNAPI static void** $vftable();
65 // NOLINTEND
66};
Definition Mob.h:56
static MCAPI void ** $vftable()
Definition Vec3.h:10