LeviLamina
Loading...
Searching...
No Matches
DragonScanningGoal.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;
11// clang-format on
12
13class DragonScanningGoal : public ::Goal {
14public:
15 // member variables
16 // NOLINTBEGIN
17 ::ll::TypedStorage<8, 8, ::EnderDragon&> mDragon;
18 ::ll::TypedStorage<4, 4, float> mScanTime;
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 DragonScanningGoal& operator=(DragonScanningGoal const&);
24 DragonScanningGoal(DragonScanningGoal const&);
25 DragonScanningGoal();
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
42 virtual ~DragonScanningGoal() /*override*/ = default;
43 // NOLINTEND
44
45public:
46 // static variables
47 // NOLINTBEGIN
48 MCAPI static float& SITTING_ATTACK_VIEW_RANGE();
49
50 MCAPI static float& SITTING_CHARGE_VIEW_RANGE();
51
52 MCAPI static int& SITTING_SCANNING_IDLE_TICKS();
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