LeviLamina
Loading...
Searching...
No Matches
BiomeAndPatternMapPolicy.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/biome/biome_color_sampling/MapPolicy.h"
7
8// auto generated forward declare list
9// clang-format off
10class Biome;
11class BlockPos;
12class BlockSource;
13namespace mce { class Color; }
14// clang-format on
15
16namespace BiomeColorSampling {
17
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<8, 8, ::gsl::not_null<int (*)(::Biome const&, ::BlockPos const&)> const> mSampler;
23 ::ll::TypedStorage<8, 24, ::std::vector<::BlockPos> const> mPattern;
24 // NOLINTEND
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 // vIndex: 1
30 virtual ::mce::Color get(::BlockSource& region, ::BlockPos const& pos) const /*override*/;
31
32 // vIndex: 0
33 virtual ~BiomeAndPatternMapPolicy() /*override*/ = default;
34 // NOLINTEND
35
36public:
37 // virtual function thunks
38 // NOLINTBEGIN
39 MCAPI ::mce::Color $get(::BlockSource& region, ::BlockPos const& pos) const;
40 // NOLINTEND
41
42public:
43 // vftables
44 // NOLINTBEGIN
45 MCNAPI static void** $vftable();
46 // NOLINTEND
47};
48
49} // namespace BiomeColorSampling
Definition BiomeAndPatternMapPolicy.h:18
Definition MapPolicy.h:14
Definition Biome.h:23
Definition BlockPos.h:17
Definition BlockSource.h:66