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 // vIndex: 1
29 virtual int sample(::IRandom&, ::br::worldgen::WorldGenContext const& heightAccessor) const /*override*/;
30
31 // vIndex: 0
32 virtual ~ConstantHeight() /*override*/ = default;
33 // NOLINTEND
34
35public:
36 // virtual function thunks
37 // NOLINTBEGIN
38 MCNAPI int $sample(::IRandom&, ::br::worldgen::WorldGenContext const& heightAccessor) const;
39 // NOLINTEND
40
41public:
42 // vftables
43 // NOLINTBEGIN
44 MCNAPI static void** $vftable();
45 // NOLINTEND
46};
47
48} // namespace br::worldgen
Definition IRandom.h:10
Definition ConstantHeight.h:18
static MCAPI void ** $vftable()
MCAPI int $sample(::IRandom &, ::br::worldgen::WorldGenContext const &heightAccessor) const
Definition WorldGenContext.h:7
Definition WorldGenContext.h:13
Definition HeightProvider.h:13