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/BaseGoal.h"
7
8// auto generated forward declare list
9// clang-format off
10class EnderDragon;
11class Path;
12// clang-format on
13
14class DragonHoldingPatternGoal : public ::BaseGoal {
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 // NOLINTEND
44
45public:
46 // member functions
47 // NOLINTBEGIN
48 MCAPI explicit DragonHoldingPatternGoal(::EnderDragon& mob);
49
50 MCAPI void findNewTarget();
51 // NOLINTEND
52
53public:
54 // constructor thunks
55 // NOLINTBEGIN
56 MCAPI void* $ctor(::EnderDragon& mob);
57 // NOLINTEND
58
59public:
60 // virtual function thunks
61 // NOLINTBEGIN
62 MCAPI bool $canUse();
63
64 MCAPI bool $canContinueToUse();
65
66 MCAPI void $start();
67
68 MCAPI void $stop();
69
70 MCAPI void $tick();
71
72 MCAPI void $appendDebugInfo(::std::string& str) const;
73
74
75 // NOLINTEND
76
77public:
78 // vftables
79 // NOLINTBEGIN
80 MCNAPI static void** $vftable();
81 // NOLINTEND
82};
static MCAPI void ** $vftable()
Definition EnderDragon.h:31
Definition Path.h:16