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/BaseGoal.h"
8
9// auto generated forward declare list
10// clang-format off
11class Mob;
12// clang-format on
13
14class RunAroundLikeCrazyGoal : public ::BaseGoal {
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 // NOLINTEND
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCAPI RunAroundLikeCrazyGoal(::Mob& mob, float speedModifier);
45 // NOLINTEND
46
47public:
48 // constructor thunks
49 // NOLINTBEGIN
50 MCAPI void* $ctor(::Mob& mob, float speedModifier);
51 // NOLINTEND
52
53public:
54 // virtual function thunks
55 // NOLINTBEGIN
56 MCAPI bool $canUse();
57
58 MCFOLD void $start();
59
60 MCAPI bool $canContinueToUse();
61
62 MCAPI void $appendDebugInfo(::std::string& debugInfo) const;
63
64
65 // NOLINTEND
66
67public:
68 // vftables
69 // NOLINTBEGIN
70 MCNAPI static void** $vftable();
71 // NOLINTEND
72};
Definition Mob.h:57
static MCAPI void ** $vftable()