LeviLamina
Loading...
Searching...
No Matches
ConstantHeight.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> mAnchor;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 // vIndex: 1
28 virtual int sample(::IRandom&, ::br::worldgen::WorldGenContext const& heightAccessor) const /*override*/;
29
30 // vIndex: 0
31 virtual ~ConstantHeight() /*override*/ = default;
32 // NOLINTEND
33
34public:
35 // destructor thunk
36 // NOLINTBEGIN
37
38 // NOLINTEND
39
40public:
41 // virtual function thunks
42 // NOLINTBEGIN
43 MCAPI int $sample(::IRandom&, ::br::worldgen::WorldGenContext const& heightAccessor) const;
44 // NOLINTEND
45
46public:
47 // vftables
48 // NOLINTBEGIN
49 MCAPI static void** $vftable();
50 // NOLINTEND
51};
52
53} // namespace br::worldgen
Definition IRandom.h:10
Definition ConstantHeight.h:17
Definition WorldGenContext.h:7
Definition WorldGenContext.h:13
Definition HeightProvider.h:13