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/deps/ecs/WeakEntityRef.h"
7#include "mc/world/actor/TempEPtr.h"
8#include "mc/world/actor/ai/goal/Goal.h"
9
10// auto generated forward declare list
11// clang-format off
12class Actor;
13class Creeper;
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 // prevent constructor by default
28 SwellGoal();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 1
34 virtual bool canUse() /*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 ~SwellGoal() /*override*/ = default;
50 // NOLINTEND
51
52public:
53 // member functions
54 // NOLINTBEGIN
55 MCNAPI SwellGoal(::Creeper* creeper, float startSwellDist, float stopSwellDist);
56 // NOLINTEND
57
58public:
59 // constructor thunks
60 // NOLINTBEGIN
61 MCNAPI void* $ctor(::Creeper* creeper, float startSwellDist, float stopSwellDist);
62 // NOLINTEND
63
64public:
65 // virtual function thunks
66 // NOLINTBEGIN
67 MCNAPI bool $canUse();
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 Actor.h:103
Definition Creeper.h:16
Definition Goal.h:14
Definition SwellGoal.h:16
MCAPI void $stop()
MCAPI void $tick()
MCAPI SwellGoal(::Creeper *creeper, float startSwellDist, float stopSwellDist)
static MCAPI void ** $vftable()
MCAPI void * $ctor(::Creeper *creeper, float startSwellDist, float stopSwellDist)
MCAPI bool $canUse()
MCAPI void $start()
MCAPI void $appendDebugInfo(::std::string &str) const