LeviLamina
Loading...
Searching...
No Matches
DragonTakeoffGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ai/goal/Goal.h"
7
8// auto generated forward declare list
9// clang-format off
10class EnderDragon;
11class Path;
12// clang-format on
13
14class DragonTakeoffGoal : public ::Goal {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<1, 1, bool> mFirstTick;
19 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::Path>> mCurrentPath;
20 ::ll::TypedStorage<8, 8, ::EnderDragon&> mDragon;
21 // NOLINTEND
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 // vIndex: 1
27 virtual bool canUse() /*override*/;
28
29 // vIndex: 2
30 virtual bool canContinueToUse() /*override*/;
31
32 // vIndex: 4
33 virtual void start() /*override*/;
34
35 // vIndex: 5
36 virtual void stop() /*override*/;
37
38 // vIndex: 6
39 virtual void tick() /*override*/;
40
41 // vIndex: 7
42 virtual void appendDebugInfo(::std::string& str) const /*override*/;
43
44 // vIndex: 0
45 virtual ~DragonTakeoffGoal() /*override*/ = default;
46 // NOLINTEND
47
48public:
49 // member functions
50 // NOLINTBEGIN
51 MCAPI void _findNewTarget();
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57
58 // NOLINTEND
59
60public:
61 // virtual function thunks
62 // NOLINTBEGIN
63 MCAPI bool $canUse();
64
65 MCAPI bool $canContinueToUse();
66
67 MCAPI void $start();
68
69 MCAPI void $stop();
70
71 MCAPI void $tick();
72
73 MCAPI void $appendDebugInfo(::std::string& str) const;
74 // NOLINTEND
75
76public:
77 // vftables
78 // NOLINTBEGIN
79 MCAPI static void** $vftable();
80 // NOLINTEND
81};
Definition DragonTakeoffGoal.h:14
Definition EnderDragon.h:27
Definition Goal.h:14
Definition Path.h:16