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 // vIndex: 0
19 virtual ~MapPolicy();
20
21 // vIndex: 1
22 virtual ::mce::Color get(::BlockSource&, ::BlockPos const&) const = 0;
23 // NOLINTEND
24
25public:
26 // destructor thunk
27 // NOLINTBEGIN
28 MCNAPI void $dtor();
29 // NOLINTEND
30
31public:
32 // virtual function thunks
33 // NOLINTBEGIN
34
35 // NOLINTEND
36
37public:
38 // vftables
39 // NOLINTBEGIN
40 MCNAPI static void** $vftable();
41 // NOLINTEND
42};
43
44} // namespace BiomeColorSampling
Definition MapPolicy.h:14
static MCAPI void ** $vftable()
Definition BlockPos.h:18
Definition BlockSource.h:67