LeviLamina
Loading...
Searching...
No Matches
DragonLandingGoal.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 DragonLandingGoal : public ::BaseGoal {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 8, ::EnderDragon&> mDragon;
19 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::Path>> mCurrentPath;
20 ::ll::TypedStorage<1, 1, bool> mDone;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 DragonLandingGoal& operator=(DragonLandingGoal const&);
26 DragonLandingGoal(DragonLandingGoal const&);
27 DragonLandingGoal();
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 DragonLandingGoal(::EnderDragon& mob);
49
50 MCAPI void findNewTarget();
51
52 MCAPI void navigateToNextPathNode();
53 // NOLINTEND
54
55public:
56 // constructor thunks
57 // NOLINTBEGIN
58 MCAPI void* $ctor(::EnderDragon& mob);
59 // NOLINTEND
60
61public:
62 // virtual function thunks
63 // NOLINTBEGIN
64 MCAPI bool $canUse();
65
66 MCAPI bool $canContinueToUse();
67
68 MCAPI void $start();
69
70 MCAPI void $stop();
71
72 MCAPI void $tick();
73
74 MCAPI void $appendDebugInfo(::std::string& str) const;
75
76
77 // NOLINTEND
78
79public:
80 // vftables
81 // NOLINTBEGIN
82 MCAPI static void** $vftable();
83 // NOLINTEND
84};
static MCAPI void ** $vftable()
Definition EnderDragon.h:31
Definition Path.h:16