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