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/deps/core/math/Color.h"
7#include "mc/world/actor/ai/goal/Goal.h"
8#include "mc/world/effect/EffectDuration.h"
9
10// auto generated forward declare list
11// clang-format off
12class EnderDragon;
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 // prevent constructor by default
33 DragonFlamingGoal& operator=(DragonFlamingGoal const&);
34 DragonFlamingGoal(DragonFlamingGoal const&);
35 DragonFlamingGoal();
36
37public:
38 // virtual functions
39 // NOLINTBEGIN
40 virtual bool canUse() /*override*/;
41
42 virtual bool canContinueToUse() /*override*/;
43
44 virtual void start() /*override*/;
45
46 virtual void stop() /*override*/;
47
48 virtual void tick() /*override*/;
49
50 virtual void appendDebugInfo(::std::string& str) const /*override*/;
51
52 virtual ~DragonFlamingGoal() /*override*/ = default;
53 // NOLINTEND
54
55public:
56 // virtual function thunks
57 // NOLINTBEGIN
58 MCAPI bool $canUse();
59
60 MCAPI bool $canContinueToUse();
61
62 MCAPI void $start();
63
64 MCAPI void $stop();
65
66 MCAPI void $tick();
67
68 MCAPI void $appendDebugInfo(::std::string& str) const;
69
70
71 // NOLINTEND
72
73public:
74 // vftables
75 // NOLINTBEGIN
76 MCAPI static void** $vftable();
77 // NOLINTEND
78};
Definition EnderDragon.h:29
Definition Goal.h:14