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 virtual ::mce::Color get(::BlockSource& region, ::BlockPos const& pos) const /*override*/;
30 // NOLINTEND
31
32public:
33 // virtual function thunks
34 // NOLINTBEGIN
35 MCAPI ::mce::Color $get(::BlockSource& region, ::BlockPos const& pos) const;
36
37
38 // NOLINTEND
39
40public:
41 // vftables
42 // NOLINTBEGIN
43 MCNAPI static void** $vftable();
44 // NOLINTEND
45};
46
47} // namespace BiomeColorSampling
Definition BiomeAndPatternMapPolicy.h:18
Definition MapPolicy.h:14
Definition Biome.h:24
Definition BlockPos.h:21
Definition BlockSource.h:73
Definition Color.h:13