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/BaseGoal.h"
7
8// auto generated forward declare list
9// clang-format off
10class EnderDragon;
11// clang-format on
12
13class DragonScanningGoal : public ::BaseGoal {
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 // NOLINTEND
42
43public:
44 // member functions
45 // NOLINTBEGIN
46 MCAPI explicit DragonScanningGoal(::EnderDragon& mob);
47 // NOLINTEND
48
49public:
50 // static variables
51 // NOLINTBEGIN
52 MCAPI static float& SITTING_ATTACK_VIEW_RANGE();
53
54 MCAPI static float& SITTING_CHARGE_VIEW_RANGE();
55
56 MCAPI static int& SITTING_SCANNING_IDLE_TICKS();
57 // NOLINTEND
58
59public:
60 // constructor thunks
61 // NOLINTBEGIN
62 MCAPI void* $ctor(::EnderDragon& mob);
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68 MCAPI bool $canUse();
69
70 MCAPI bool $canContinueToUse();
71
72 MCAPI void $start();
73
74 MCAPI void $stop();
75
76 MCAPI void $tick();
77
78 MCAPI void $appendDebugInfo(::std::string& str) const;
79
80
81 // NOLINTEND
82
83public:
84 // vftables
85 // NOLINTBEGIN
86 MCAPI static void** $vftable();
87 // NOLINTEND
88};
static MCAPI void ** $vftable()
Definition EnderDragon.h:31