LeviLamina
Loading...
Searching...
No Matches
DragonChargePlayerGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ai/goal/DragonBaseGoal.h"
7
9public:
10 // member variables
11 // NOLINTBEGIN
12 ::ll::TypedStorage<4, 4, int> mOutsideChargeZoneTicks;
13 ::ll::TypedStorage<4, 4, int> mContinueChargeThresholdTicks;
14 // NOLINTEND
15
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 // vIndex: 1
20 virtual bool canUse() /*override*/;
21
22 // vIndex: 2
23 virtual bool canContinueToUse() /*override*/;
24
25 // vIndex: 4
26 virtual void start() /*override*/;
27
28 // vIndex: 5
29 virtual void stop() /*override*/;
30
31 // vIndex: 6
32 virtual void tick() /*override*/;
33
34 // vIndex: 7
35 virtual void appendDebugInfo(::std::string& str) const /*override*/;
36
37 // vIndex: 0
38 virtual ~DragonChargePlayerGoal() /*override*/ = default;
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50 MCAPI bool $canUse();
51
52 MCAPI bool $canContinueToUse();
53
54 MCAPI void $start();
55
56 MCAPI void $stop();
57
58 MCAPI void $tick();
59
60 MCAPI void $appendDebugInfo(::std::string& str) const;
61 // NOLINTEND
62
63public:
64 // vftables
65 // NOLINTBEGIN
66 MCAPI static void** $vftable();
67 // NOLINTEND
68};
Definition DragonBaseGoal.h:14
Definition DragonChargePlayerGoal.h:8