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 // vIndex: 1
28 virtual ::std::optional<::BlockPos> place(::IFeature::PlacementContext const& context) const /*override*/;
29
30 // vIndex: 0
31 virtual ~PartiallyExposedBlobFeature() /*override*/ = default;
32 // NOLINTEND
33
34public:
35 // virtual function thunks
36 // NOLINTBEGIN
37 MCAPI ::std::optional<::BlockPos> $place(::IFeature::PlacementContext const& context) const;
38 // NOLINTEND
39
40public:
41 // vftables
42 // NOLINTBEGIN
43 MCNAPI static void** $vftable();
44 // NOLINTEND
45};
Definition BlockPos.h:17
Definition IFeature.h:18
Definition PartiallyExposedBlobFeature.h:14
static MCAPI void ** $vftable()
Definition IFeature.h:26
Definition context.h:5