LeviLamina
Loading...
Searching...
No Matches
DragonFlamingGoal.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;
11struct EffectDuration;
12namespace mce { class Color; }
13// clang-format on
14
15class DragonFlamingGoal : public ::Goal {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, ::EnderDragon&> mDragon;
20 ::ll::TypedStorage<4, 4, int> mGroundFlameAttackCount;
21 ::ll::TypedStorage<4, 4, int> mCooldownTicks;
22 ::ll::TypedStorage<4, 4, int> mFlameTicks;
23 ::ll::TypedStorage<4, 4, int> mFlameDurationTicks;
24 ::ll::TypedStorage<4, 4, int> mRoarTicks;
25 ::ll::TypedStorage<4, 4, int> mRoarDurationTicks;
26 ::ll::TypedStorage<4, 4, ::EffectDuration> mSmokeDurationTicks;
27 ::ll::TypedStorage<4, 4, float> mSmokeRadius;
28 ::ll::TypedStorage<4, 16, ::mce::Color> mSmokeColor;
29 // NOLINTEND
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 1
35 virtual bool canUse() /*override*/;
36
37 // vIndex: 2
38 virtual bool canContinueToUse() /*override*/;
39
40 // vIndex: 4
41 virtual void start() /*override*/;
42
43 // vIndex: 5
44 virtual void stop() /*override*/;
45
46 // vIndex: 6
47 virtual void tick() /*override*/;
48
49 // vIndex: 7
50 virtual void appendDebugInfo(::std::string& str) const /*override*/;
51
52 // vIndex: 0
53 virtual ~DragonFlamingGoal() /*override*/ = default;
54 // NOLINTEND
55
56public:
57 // destructor thunk
58 // NOLINTBEGIN
59
60 // NOLINTEND
61
62public:
63 // virtual function thunks
64 // NOLINTBEGIN
65 MCAPI bool $canUse();
66
67 MCAPI bool $canContinueToUse();
68
69 MCAPI void $start();
70
71 MCAPI void $stop();
72
73 MCAPI void $tick();
74
75 MCAPI void $appendDebugInfo(::std::string& str) const;
76 // NOLINTEND
77
78public:
79 // vftables
80 // NOLINTBEGIN
81 MCAPI static void** $vftable();
82 // NOLINTEND
83};
Definition DragonFlamingGoal.h:15
Definition EnderDragon.h:27
Definition Goal.h:14
Definition EffectDuration.h:5