LeviLamina
Loading...
Searching...
No Matches
FindUnderwaterTreasureGoal.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#include "mc/world/level/BlockPos.h"
9
10// auto generated forward declare list
11// clang-format off
12class Mob;
13// clang-format on
14
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, ::Mob&> mMob;
20 ::ll::TypedStorage<4, 12, ::BlockPos> mDestination;
21 ::ll::TypedStorage<4, 12, ::Vec3> mLastPos;
22 ::ll::TypedStorage<4, 4, int> mBlocksCounter;
23 ::ll::TypedStorage<4, 4, int> mBlocksToTravel;
24 ::ll::TypedStorage<4, 4, int> mTimeToRecalcPath;
25 ::ll::TypedStorage<4, 4, int> mFailedPathing;
26 ::ll::TypedStorage<4, 4, int> mTotalFailedPathing;
27 ::ll::TypedStorage<4, 4, float> mSpeed;
28 ::ll::TypedStorage<4, 4, int> mSearchArea;
29 // NOLINTEND
30
31public:
32 // prevent constructor by default
36
37public:
38 // virtual functions
39 // NOLINTBEGIN
40 // vIndex: 1
41 virtual bool canUse() /*override*/;
42
43 // vIndex: 2
44 virtual bool canContinueToUse() /*override*/;
45
46 // vIndex: 3
47 virtual bool canBeInterrupted() /*override*/;
48
49 // vIndex: 4
50 virtual void start() /*override*/;
51
52 // vIndex: 5
53 virtual void stop() /*override*/;
54
55 // vIndex: 6
56 virtual void tick() /*override*/;
57
58 // vIndex: 7
59 virtual void appendDebugInfo(::std::string& str) const /*override*/;
60
61 // vIndex: 0
62 virtual ~FindUnderwaterTreasureGoal() /*override*/ = default;
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68 MCNAPI bool $canUse();
69
70 MCNAPI bool $canContinueToUse();
71
72 MCNAPI bool $canBeInterrupted();
73
74 MCNAPI void $start();
75
76 MCNAPI void $stop();
77
78 MCNAPI void $tick();
79
80 MCNAPI void $appendDebugInfo(::std::string& str) const;
81 // NOLINTEND
82
83public:
84 // vftables
85 // NOLINTBEGIN
86 MCNAPI static void** $vftable();
87 // NOLINTEND
88};
Definition FindUnderwaterTreasureGoal.h:15
MCAPI void $appendDebugInfo(::std::string &str) const
MCAPI bool $canBeInterrupted()
MCAPI bool $canContinueToUse()
static MCAPI void ** $vftable()
Definition Goal.h:14
Definition Mob.h:47