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/BaseGoal.h"
8#include "mc/world/effect/EffectDuration.h"
9
10// auto generated forward declare list
11// clang-format off
12class EnderDragon;
13class Mob;
14// clang-format on
15
16class DragonFlamingGoal : public ::BaseGoal {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 8, ::EnderDragon&> mDragon;
21 ::ll::TypedStorage<4, 4, int> mGroundFlameAttackCount;
22 ::ll::TypedStorage<4, 4, int> mCooldownTicks;
23 ::ll::TypedStorage<4, 4, int> mFlameTicks;
24 ::ll::TypedStorage<4, 4, int> mFlameDurationTicks;
25 ::ll::TypedStorage<4, 4, int> mRoarTicks;
26 ::ll::TypedStorage<4, 4, int> mRoarDurationTicks;
27 ::ll::TypedStorage<4, 4, ::EffectDuration> mSmokeDurationTicks;
28 ::ll::TypedStorage<4, 4, float> mSmokeRadius;
29 ::ll::TypedStorage<4, 16, ::mce::Color> mSmokeColor;
30 // NOLINTEND
31
32public:
33 // prevent constructor by default
34 DragonFlamingGoal& operator=(DragonFlamingGoal const&);
35 DragonFlamingGoal(DragonFlamingGoal const&);
36 DragonFlamingGoal();
37
38public:
39 // virtual functions
40 // NOLINTBEGIN
41 virtual bool canUse() /*override*/;
42
43 virtual bool canContinueToUse() /*override*/;
44
45 virtual void start() /*override*/;
46
47 virtual void stop() /*override*/;
48
49 virtual void tick() /*override*/;
50
51 virtual void appendDebugInfo(::std::string& str) const /*override*/;
52 // NOLINTEND
53
54public:
55 // member functions
56 // NOLINTBEGIN
57 MCAPI explicit DragonFlamingGoal(::Mob& mob);
58 // NOLINTEND
59
60public:
61 // constructor thunks
62 // NOLINTBEGIN
63 MCAPI void* $ctor(::Mob& mob);
64 // NOLINTEND
65
66public:
67 // virtual function thunks
68 // NOLINTBEGIN
69 MCAPI bool $canUse();
70
71 MCAPI bool $canContinueToUse();
72
73 MCAPI void $start();
74
75 MCAPI void $stop();
76
77 MCAPI void $tick();
78
79 MCAPI void $appendDebugInfo(::std::string& str) const;
80
81
82 // NOLINTEND
83
84public:
85 // vftables
86 // NOLINTBEGIN
87 MCAPI static void** $vftable();
88 // NOLINTEND
89};
static MCAPI void ** $vftable()
Definition EnderDragon.h:31
Definition Mob.h:57