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/BaseGoal.h"
7
8// auto generated forward declare list
9// clang-format off
10class EnderDragon;
11// clang-format on
12
13class DragonDeathGoal : public ::BaseGoal {
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 // prevent constructor by default
23 DragonDeathGoal& operator=(DragonDeathGoal const&);
24 DragonDeathGoal(DragonDeathGoal const&);
25 DragonDeathGoal();
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 virtual bool canUse() /*override*/;
31
32 virtual bool canContinueToUse() /*override*/;
33
34 virtual void start() /*override*/;
35
36 virtual void stop() /*override*/;
37
38 virtual void tick() /*override*/;
39
40 virtual void appendDebugInfo(::std::string& str) const /*override*/;
41 // NOLINTEND
42
43public:
44 // member functions
45 // NOLINTBEGIN
46 MCAPI explicit DragonDeathGoal(::EnderDragon& mob);
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCAPI void* $ctor(::EnderDragon& mob);
53 // NOLINTEND
54
55public:
56 // virtual function thunks
57 // NOLINTBEGIN
58 MCFOLD bool $canUse();
59
60 MCFOLD 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};
static MCAPI void ** $vftable()
Definition EnderDragon.h:31