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