LeviLamina
Loading...
Searching...
No Matches
SurfaceRelativeThresholdFeature.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/levelgen/feature/IFeature.h"
8
9// auto generated forward declare list
10// clang-format off
11class BlockPos;
12// clang-format on
13
14class SurfaceRelativeThresholdFeature : public ::IFeature {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 24, ::WeakRef<::IFeature>> mFeatureToPlace;
19 ::ll::TypedStorage<4, 4, int> mMinimumDistanceBelowSurface;
20 // NOLINTEND
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 virtual ~SurfaceRelativeThresholdFeature() /*override*/ = default;
26
27 virtual ::std::optional<::BlockPos> place(::IFeature::PlacementContext const& context) const /*override*/;
28 // NOLINTEND
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI SurfaceRelativeThresholdFeature();
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCAPI void* $ctor();
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45 MCAPI ::std::optional<::BlockPos> $place(::IFeature::PlacementContext const& context) const;
46
47
48 // NOLINTEND
49
50public:
51 // vftables
52 // NOLINTBEGIN
53 MCNAPI static void** $vftable();
54 // NOLINTEND
55};
Definition BlockPos.h:21
Definition IFeature.h:19
static MCAPI void ** $vftable()
Definition IFeature.h:27
Definition context.h:5