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#include "mc/world/level/levelgen/v2/VerticalAnchor.h"
8
9// auto generated forward declare list
10// clang-format off
11class IRandom;
12namespace br::worldgen { class VerticalAnchor; }
13namespace br::worldgen { class WorldGenContext; }
14// clang-format on
15
16namespace br::worldgen {
17
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 16, ::br::worldgen::VerticalAnchor> mAnchor;
23 // NOLINTEND
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 virtual int sample(::IRandom& heightAccessor, ::br::worldgen::WorldGenContext const&) const /*override*/;
29 // NOLINTEND
30
31public:
32 // static functions
33 // NOLINTBEGIN
34 MCAPI static ::br::worldgen::ConstantHeight of(::br::worldgen::VerticalAnchor value);
35 // NOLINTEND
36
37public:
38 // virtual function thunks
39 // NOLINTBEGIN
40 MCAPI int $sample(::IRandom& heightAccessor, ::br::worldgen::WorldGenContext const&) const;
41
42
43 // NOLINTEND
44
45public:
46 // vftables
47 // NOLINTBEGIN
48 MCNAPI static void** $vftable();
49 // NOLINTEND
50};
51
52} // namespace br::worldgen
Definition IRandom.h:10
Definition ConstantHeight.h:18
static MCAPI void ** $vftable()
Definition VerticalAnchor.h:12
Definition WorldGenContext.h:12
Definition HeightProvider.h:13