LeviLamina
Loading...
Searching...
No Matches
RunAroundLikeCrazyGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/math/Vec3.h"
7#include "mc/world/actor/ai/goal/Goal.h"
8
9// auto generated forward declare list
10// clang-format off
11class Mob;
12// clang-format on
13
14class RunAroundLikeCrazyGoal : public ::Goal {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 8, ::Mob&> mMob;
19 ::ll::TypedStorage<4, 4, float> mSpeedModifier;
20 ::ll::TypedStorage<4, 12, ::Vec3> mPos;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 RunAroundLikeCrazyGoal& operator=(RunAroundLikeCrazyGoal const&);
26 RunAroundLikeCrazyGoal(RunAroundLikeCrazyGoal const&);
27 RunAroundLikeCrazyGoal();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual bool canUse() /*override*/;
33
34 virtual void start() /*override*/;
35
36 virtual bool canContinueToUse() /*override*/;
37
38 virtual void appendDebugInfo(::std::string& debugInfo) const /*override*/;
39
40 virtual ~RunAroundLikeCrazyGoal() /*override*/ = default;
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46 MCAPI bool $canUse();
47
48 MCFOLD void $start();
49
50 MCAPI bool $canContinueToUse();
51
52 MCAPI void $appendDebugInfo(::std::string& debugInfo) const;
53
54
55 // NOLINTEND
56
57public:
58 // vftables
59 // NOLINTBEGIN
60 MCNAPI static void** $vftable();
61 // NOLINTEND
62};
Definition Goal.h:14
Definition Mob.h:50
static MCAPI void ** $vftable()