LeviLamina
Loading...
Searching...
No Matches
DimensionPadding.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace br::worldgen {
6
7struct DimensionPadding {
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<4, 4, uint> mTop;
12 ::ll::TypedStorage<4, 4, uint> mBottom;
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
17 DimensionPadding();
18
19public:
20 // member functions
21 // NOLINTBEGIN
22 MCAPI explicit DimensionPadding(uint amount);
23 // NOLINTEND
24
25public:
26 // constructor thunks
27 // NOLINTBEGIN
28 MCFOLD void* $ctor(uint amount);
29 // NOLINTEND
30};
31
32} // namespace br::worldgen