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