LeviLamina
Loading...
Searching...
No Matches
DragonHoldingPatternGoal.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 DragonHoldingPatternGoal : public ::Goal {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::Path>> mCurrentPath;
19 ::ll::TypedStorage<1, 1, bool> mClockwise;
20 ::ll::TypedStorage<8, 8, ::EnderDragon&> mDragon;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 DragonHoldingPatternGoal& operator=(DragonHoldingPatternGoal const&);
26 DragonHoldingPatternGoal(DragonHoldingPatternGoal const&);
27 DragonHoldingPatternGoal();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual bool canUse() /*override*/;
33
34 virtual bool canContinueToUse() /*override*/;
35
36 virtual void start() /*override*/;
37
38 virtual void stop() /*override*/;
39
40 virtual void tick() /*override*/;
41
42 virtual void appendDebugInfo(::std::string& str) const /*override*/;
43
44 virtual ~DragonHoldingPatternGoal() /*override*/ = default;
45 // NOLINTEND
46
47public:
48 // member functions
49 // NOLINTBEGIN
50 MCAPI void findNewTarget();
51 // NOLINTEND
52
53public:
54 // virtual function thunks
55 // NOLINTBEGIN
56 MCAPI bool $canUse();
57
58 MCAPI bool $canContinueToUse();
59
60 MCAPI void $start();
61
62 MCAPI void $stop();
63
64 MCAPI void $tick();
65
66 MCAPI void $appendDebugInfo(::std::string& str) const;
67
68
69 // NOLINTEND
70
71public:
72 // vftables
73 // NOLINTBEGIN
74 MCNAPI static void** $vftable();
75 // NOLINTEND
76};
static MCAPI void ** $vftable()
Definition EnderDragon.h:29
Definition Goal.h:14
Definition Path.h:16