LeviLamina
Loading...
Searching...
No Matches
BeardAndShaverFeature.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/game_refs/WeakRef.h"
7#include "mc/world/level/block/BlockDescriptor.h"
8#include "mc/world/level/levelgen/feature/IFeature.h"
9#include "mc/world/level/levelgen/structure/BoundingBox.h"
10
11// auto generated forward declare list
12// clang-format off
13class BlockPos;
14// clang-format on
15
16class BeardAndShaverFeature : public ::IFeature {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 24, ::WeakRef<::IFeature>> mFeatureRef;
21 ::ll::TypedStorage<4, 24, ::BoundingBox> mBoundingBox;
22 ::ll::TypedStorage<4, 4, float> mYDelta;
23 ::ll::TypedStorage<8, 176, ::BlockDescriptor> mSurfaceBlock;
24 ::ll::TypedStorage<8, 176, ::BlockDescriptor> mSupportBlock;
25 ::ll::TypedStorage<4, 4, float> mBeardRaggednessMin;
26 ::ll::TypedStorage<4, 4, float> mBeardRaggednessMax;
27 // NOLINTEND
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual ~BeardAndShaverFeature() /*override*/ = default;
33
34 virtual ::std::optional<::BlockPos> place(::IFeature::PlacementContext const& context) const /*override*/;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCAPI BeardAndShaverFeature();
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCAPI void* $ctor();
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCAPI ::std::optional<::BlockPos> $place(::IFeature::PlacementContext const& context) const;
53
54
55 // NOLINTEND
56
57public:
58 // vftables
59 // NOLINTBEGIN
60 MCNAPI static void** $vftable();
61 // NOLINTEND
62};
static MCAPI void ** $vftable()
Definition BlockPos.h:21
Definition IFeature.h:19
Definition IFeature.h:27
Definition context.h:5