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
15class FindUnderwaterTreasureGoal : public ::Goal {
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
54 virtual ~FindUnderwaterTreasureGoal() /*override*/ = default;
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60 MCAPI bool $canUse();
61
62 MCAPI bool $canContinueToUse();
63
64 MCFOLD bool $canBeInterrupted();
65
66 MCAPI void $start();
67
68 MCAPI void $stop();
69
70 MCAPI void $tick();
71
72 MCAPI void $appendDebugInfo(::std::string& str) const;
73
74
75 // NOLINTEND
76
77public:
78 // vftables
79 // NOLINTBEGIN
80 MCNAPI static void** $vftable();
81 // NOLINTEND
82};
static MCAPI void ** $vftable()
Definition Goal.h:14
Definition Mob.h:50