LeviLamina
Loading...
Searching...
No Matches
MapPolicy.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class BlockPos;
8class BlockSource;
9namespace mce { class Color; }
10// clang-format on
11
12namespace BiomeColorSampling {
13
14class MapPolicy {
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 virtual ~MapPolicy() = default;
19
20 virtual ::mce::Color get(::BlockSource& region, ::BlockPos const& pos) const = 0;
21 // NOLINTEND
22
23public:
24 // virtual function thunks
25 // NOLINTBEGIN
26
27 // NOLINTEND
28};
29
30} // namespace BiomeColorSampling
Definition MapPolicy.h:14
Definition BlockPos.h:21
Definition BlockSource.h:73
Definition Color.h:13