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