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/BaseGoal.h"
9
10// auto generated forward declare list
11// clang-format off
12class Actor;
13class Creeper;
14// clang-format on
15
16class SwellGoal : public ::BaseGoal {
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 virtual bool canUse() /*override*/;
34
35 virtual void start() /*override*/;
36
37 virtual void stop() /*override*/;
38
39 virtual void tick() /*override*/;
40
41 virtual void appendDebugInfo(::std::string& str) const /*override*/;
42 // NOLINTEND
43
44public:
45 // member functions
46 // NOLINTBEGIN
47 MCAPI SwellGoal(::Creeper* creeper, float startSwellDist, float stopSwellDist);
48 // NOLINTEND
49
50public:
51 // constructor thunks
52 // NOLINTBEGIN
53 MCAPI void* $ctor(::Creeper* creeper, float startSwellDist, float stopSwellDist);
54 // NOLINTEND
55
56public:
57 // virtual function thunks
58 // NOLINTBEGIN
59 MCAPI bool $canUse();
60
61 MCAPI void $start();
62
63 MCAPI void $stop();
64
65 MCAPI void $tick();
66
67 MCAPI void $appendDebugInfo(::std::string& str) const;
68
69
70 // NOLINTEND
71
72public:
73 // vftables
74 // NOLINTBEGIN
75 MCNAPI static void** $vftable();
76 // NOLINTEND
77};
Definition Actor.h:125
Definition Creeper.h:16
static MCAPI void ** $vftable()