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