LeviLamina
Loading...
Searching...
No Matches
HoldGroundGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ActorDefinitionTrigger.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 Mob;
14// clang-format on
15
16class HoldGroundGoal : public ::Goal {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 8, ::Mob&> mMob;
21 ::ll::TypedStorage<8, 40, ::TempEPtr<::Actor>> mLookAt;
22 ::ll::TypedStorage<4, 4, float> mHostileRadiusSqr;
23 ::ll::TypedStorage<1, 1, bool> mBroadcast;
24 ::ll::TypedStorage<4, 4, float> mBroadcastRange;
25 ::ll::TypedStorage<8, 104, ::ActorDefinitionTrigger const> mWithinRangeEvent;
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
30 HoldGroundGoal& operator=(HoldGroundGoal const&);
31 HoldGroundGoal(HoldGroundGoal const&);
32 HoldGroundGoal();
33
34public:
35 // virtual functions
36 // NOLINTBEGIN
37 virtual ~HoldGroundGoal() /*override*/;
38
39 virtual bool canUse() /*override*/;
40
41 virtual bool canContinueToUse() /*override*/;
42
43 virtual void start() /*override*/;
44
45 virtual void stop() /*override*/;
46
47 virtual void tick() /*override*/;
48
49 virtual void appendDebugInfo(::std::string& str) const /*override*/;
50 // NOLINTEND
51
52public:
53 // destructor thunk
54 // NOLINTBEGIN
55 MCAPI void $dtor();
56 // NOLINTEND
57
58public:
59 // virtual function thunks
60 // NOLINTBEGIN
61 MCAPI bool $canUse();
62
63 MCAPI bool $canContinueToUse();
64
65 MCAPI void $start();
66
67 MCAPI void $stop();
68
69 MCAPI void $tick();
70
71 MCAPI void $appendDebugInfo(::std::string& str) const;
72
73
74 // NOLINTEND
75
76public:
77 // vftables
78 // NOLINTBEGIN
79 MCNAPI static void** $vftable();
80 // NOLINTEND
81};
Definition Actor.h:105
Definition Goal.h:14
static MCAPI void ** $vftable()
Definition Mob.h:50