LeviLamina
Loading...
Searching...
No Matches
Axolotl.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/actor/ActorInitializationMethod.h"
7#include "mc/world/actor/animal/Animal.h"
8
9// auto generated forward declare list
10// clang-format off
11class AABB;
12class BlockPos;
13class Vec3;
15// clang-format on
16
17class Axolotl : public ::Animal {
18public:
19 // virtual functions
20 // NOLINTBEGIN
21 virtual void
22 initializeComponents(::ActorInitializationMethod method, ::VariantParameterList const& params) /*override*/;
23
24 virtual float _getWalkTargetValue(::BlockPos const& pos) /*override*/;
25
26 virtual ::AABB _getAdjustedAABBForSpawnCheck(::AABB const& aabb, ::Vec3 const& mobPos) const /*override*/;
27
28 virtual ~Axolotl() /*override*/ = default;
29 // NOLINTEND
30
31public:
32 // virtual function thunks
33 // NOLINTBEGIN
34 MCAPI void $initializeComponents(::ActorInitializationMethod method, ::VariantParameterList const& params);
35
36 MCFOLD float $_getWalkTargetValue(::BlockPos const& pos);
37
38 MCAPI ::AABB $_getAdjustedAABBForSpawnCheck(::AABB const& aabb, ::Vec3 const& mobPos) const;
39
40
41 // NOLINTEND
42
43public:
44 // vftables
45 // NOLINTBEGIN
46 MCAPI static void** $vftable();
47 // NOLINTEND
48};
Definition AABB.h:18
Definition Axolotl.h:17
Definition BlockPos.h:19
Definition Vec3.h:10
Definition VariantParameterList.h:13