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 // prevent constructor by default
25 DragonTakeoffGoal& operator=(DragonTakeoffGoal const&);
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 1
33 virtual bool canUse() /*override*/;
34
35 // vIndex: 2
36 virtual bool canContinueToUse() /*override*/;
37
38 // vIndex: 4
39 virtual void start() /*override*/;
40
41 // vIndex: 5
42 virtual void stop() /*override*/;
43
44 // vIndex: 6
45 virtual void tick() /*override*/;
46
47 // vIndex: 7
48 virtual void appendDebugInfo(::std::string& str) const /*override*/;
49
50 // vIndex: 0
51 virtual ~DragonTakeoffGoal() /*override*/ = default;
52 // NOLINTEND
53
54public:
55 // member functions
56 // NOLINTBEGIN
57 MCNAPI void _findNewTarget();
58 // NOLINTEND
59
60public:
61 // virtual function thunks
62 // NOLINTBEGIN
63 MCNAPI bool $canUse();
64
65 MCNAPI bool $canContinueToUse();
66
67 MCNAPI void $start();
68
69 MCNAPI void $stop();
70
71 MCNAPI void $tick();
72
73 MCNAPI void $appendDebugInfo(::std::string& str) const;
74 // NOLINTEND
75
76public:
77 // vftables
78 // NOLINTBEGIN
79 MCNAPI static void** $vftable();
80 // NOLINTEND
81};
Definition DragonTakeoffGoal.h:14
MCAPI void $tick()
static MCAPI void ** $vftable()
MCAPI bool $canContinueToUse()
MCAPI void $appendDebugInfo(::std::string &str) const
MCAPI void _findNewTarget()
MCAPI void $stop()
MCAPI void $start()
MCAPI bool $canUse()
Definition EnderDragon.h:27
Definition Goal.h:14
Definition Path.h:16