LeviLamina
Loading...
Searching...
No Matches
PartiallyExposedBlobFeature.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/block/BlockDescriptor.h"
7#include "mc/world/level/levelgen/feature/IFeature.h"
8
9// auto generated forward declare list
10// clang-format off
11class BlockPos;
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<1, 1, uchar> mExposedFace;
19 ::ll::TypedStorage<4, 4, int> mPlacementRadiusAroundFloor;
20 ::ll::TypedStorage<4, 4, float> mPlacementProbabilityPerValidPosition;
21 ::ll::TypedStorage<8, 184, ::BlockDescriptor> mBlockToPlace;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual ::std::optional<::BlockPos> place(::IFeature::PlacementContext const& context) const /*override*/;
28
29 virtual ~PartiallyExposedBlobFeature() /*override*/ = default;
30 // NOLINTEND
31
32public:
33 // virtual function thunks
34 // NOLINTBEGIN
35 MCAPI ::std::optional<::BlockPos> $place(::IFeature::PlacementContext const& context) const;
36
37
38 // NOLINTEND
39
40public:
41 // vftables
42 // NOLINTBEGIN
43 MCNAPI static void** $vftable();
44 // NOLINTEND
45};
Definition BlockPos.h:19
Definition IFeature.h:18
Definition PartiallyExposedBlobFeature.h:14
static MCAPI void ** $vftable()
Definition IFeature.h:26
Definition context.h:5