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/BaseGoal.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
15class FindUnderwaterTreasureGoal : public ::BaseGoal {
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
33 FindUnderwaterTreasureGoal& operator=(FindUnderwaterTreasureGoal const&);
34 FindUnderwaterTreasureGoal(FindUnderwaterTreasureGoal const&);
35 FindUnderwaterTreasureGoal();
36
37public:
38 // virtual functions
39 // NOLINTBEGIN
40 virtual bool canUse() /*override*/;
41
42 virtual bool canContinueToUse() /*override*/;
43
44 virtual bool canBeInterrupted() /*override*/;
45
46 virtual void start() /*override*/;
47
48 virtual void stop() /*override*/;
49
50 virtual void tick() /*override*/;
51
52 virtual void appendDebugInfo(::std::string& str) const /*override*/;
53 // NOLINTEND
54
55public:
56 // member functions
57 // NOLINTBEGIN
58 MCAPI explicit FindUnderwaterTreasureGoal(::Mob& mob);
59 // NOLINTEND
60
61public:
62 // constructor thunks
63 // NOLINTBEGIN
64 MCAPI void* $ctor(::Mob& mob);
65 // NOLINTEND
66
67public:
68 // virtual function thunks
69 // NOLINTBEGIN
70 MCAPI bool $canUse();
71
72 MCAPI bool $canContinueToUse();
73
74 MCFOLD bool $canBeInterrupted();
75
76 MCAPI void $start();
77
78 MCAPI void $stop();
79
80 MCAPI void $tick();
81
82 MCAPI void $appendDebugInfo(::std::string& str) const;
83
84
85 // NOLINTEND
86
87public:
88 // vftables
89 // NOLINTBEGIN
90 MCNAPI static void** $vftable();
91 // NOLINTEND
92};
static MCAPI void ** $vftable()
Definition Mob.h:57