LeviLamina
Loading...
Searching...
No Matches
UniformHeight.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/v2/HeightProvider.h"
7
8// auto generated forward declare list
9// clang-format off
10class IRandom;
11namespace br::worldgen { class VerticalAnchor; }
12namespace br::worldgen { class WorldGenContext; }
13// clang-format on
14
15namespace br::worldgen {
16
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 16, ::br::worldgen::VerticalAnchor> mMinInclusive;
22 ::ll::TypedStorage<8, 16, ::br::worldgen::VerticalAnchor> mMaxInclusive;
23 // NOLINTEND
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 // vIndex: 1
29 virtual int sample(::IRandom& randomSource, ::br::worldgen::WorldGenContext const& heightAccessor) const
30 /*override*/;
31
32 // vIndex: 0
33 virtual ~UniformHeight() /*override*/ = default;
34 // NOLINTEND
35
36public:
37 // member functions
38 // NOLINTBEGIN
39 MCAPI ::std::string toString() const;
40 // NOLINTEND
41
42public:
43 // destructor thunk
44 // NOLINTBEGIN
45
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCAPI int $sample(::IRandom& randomSource, ::br::worldgen::WorldGenContext const& heightAccessor) const;
52 // NOLINTEND
53
54public:
55 // vftables
56 // NOLINTBEGIN
57 MCAPI static void** $vftable();
58 // NOLINTEND
59};
60
61} // namespace br::worldgen
Definition IRandom.h:10
Definition UniformHeight.h:17
Definition WorldGenContext.h:7
Definition WorldGenContext.h:13
Definition HeightProvider.h:13