LeviLamina
Loading...
Searching...
No Matches
SwellGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/TempEPtr.h"
7#include "mc/world/actor/ai/goal/Goal.h"
8
9// auto generated forward declare list
10// clang-format off
11class Actor;
12class Creeper;
13class WeakEntityRef;
14// clang-format on
15
16class SwellGoal : public ::Goal {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 24, ::WeakEntityRef> mCreeperRef;
21 ::ll::TypedStorage<4, 4, float> mStartSwellDist;
22 ::ll::TypedStorage<4, 4, float> mStopSwellDist;
23 ::ll::TypedStorage<8, 40, ::TempEPtr<::Actor>> mTarget;
24 // NOLINTEND
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 // vIndex: 1
30 virtual bool canUse() /*override*/;
31
32 // vIndex: 4
33 virtual void start() /*override*/;
34
35 // vIndex: 5
36 virtual void stop() /*override*/;
37
38 // vIndex: 6
39 virtual void tick() /*override*/;
40
41 // vIndex: 7
42 virtual void appendDebugInfo(::std::string& str) const /*override*/;
43
44 // vIndex: 0
45 virtual ~SwellGoal() /*override*/ = default;
46 // NOLINTEND
47
48public:
49 // member functions
50 // NOLINTBEGIN
51 MCAPI SwellGoal(::Creeper* creeper, float startSwellDist, float stopSwellDist);
52 // NOLINTEND
53
54public:
55 // constructor thunks
56 // NOLINTBEGIN
57 MCAPI void* $ctor(::Creeper* creeper, float startSwellDist, float stopSwellDist);
58 // NOLINTEND
59
60public:
61 // destructor thunk
62 // NOLINTBEGIN
63
64 // NOLINTEND
65
66public:
67 // virtual function thunks
68 // NOLINTBEGIN
69 MCAPI bool $canUse();
70
71 MCAPI void $start();
72
73 MCAPI void $stop();
74
75 MCAPI void $tick();
76
77 MCAPI void $appendDebugInfo(::std::string& str) const;
78 // NOLINTEND
79
80public:
81 // vftables
82 // NOLINTBEGIN
83 MCAPI static void** $vftable();
84 // NOLINTEND
85};
Definition Actor.h:104
Definition Creeper.h:13
Definition Goal.h:14
Definition SwellGoal.h:16
Definition WeakEntityRef.h:14