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&);
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 // vIndex: 1
31 virtual bool canUse() /*override*/;
32
33 // vIndex: 2
34 virtual bool canContinueToUse() /*override*/;
35
36 // vIndex: 4
37 virtual void start() /*override*/;
38
39 // vIndex: 5
40 virtual void stop() /*override*/;
41
42 // vIndex: 6
43 virtual void tick() /*override*/;
44
45 // vIndex: 7
46 virtual void appendDebugInfo(::std::string& str) const /*override*/;
47
48 // vIndex: 0
49 virtual ~DragonScanningGoal() /*override*/ = default;
50 // NOLINTEND
51
52public:
53 // static variables
54 // NOLINTBEGIN
55 MCNAPI static float& SITTING_ATTACK_VIEW_RANGE();
56
57 MCNAPI static float& SITTING_CHARGE_VIEW_RANGE();
58
59 MCNAPI static int& SITTING_SCANNING_IDLE_TICKS();
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 DragonScanningGoal.h:13
MCAPI bool $canUse()
MCAPI void $start()
MCAPI void $appendDebugInfo(::std::string &str) const
static MCAPI float & SITTING_ATTACK_VIEW_RANGE()
static MCAPI float & SITTING_CHARGE_VIEW_RANGE()
static MCAPI int & SITTING_SCANNING_IDLE_TICKS()
MCAPI void $tick()
static MCAPI void ** $vftable()
MCAPI void $stop()
MCAPI bool $canContinueToUse()
Definition EnderDragon.h:27
Definition Goal.h:14