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