LeviLamina
Loading...
Searching...
No Matches
StructurePlaceSettings.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/util/Mirror.h"
7#include "mc/util/Rotation.h"
8
9// auto generated forward declare list
10// clang-format off
11class BlockPos;
12class BoundingBox;
13namespace br::worldgen { struct StructureProcessor; }
14// clang-format on
15
16namespace br::worldgen {
17
19public:
20 // StructurePlaceSettings inner types define
21 enum class RetainLiquid : int {
22 Remove = 0,
23 Retain = 1,
24 };
25
26public:
27 // member variables
28 // NOLINTBEGIN
29 ::ll::TypedStorage<1, 1, ::Rotation> rotation;
30 ::ll::TypedStorage<1, 1, ::Mirror> mirror;
31 ::ll::TypedStorage<4, 12, ::BlockPos> rotationPivot;
32 ::ll::TypedStorage<4, 24, ::BoundingBox> chunkBB;
33 ::ll::TypedStorage<4, 4, ::br::worldgen::StructurePlaceSettings::RetainLiquid> liquids;
34 ::ll::
35 TypedStorage<8, 24, ::std::vector<::gsl::not_null<::std::shared_ptr<::br::worldgen::StructureProcessor const>>>>
36 processors;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48 MCAPI void $dtor();
49 // NOLINTEND
50};
51
52} // namespace br::worldgen
Definition BlockPos.h:18
Definition BoundingBox.h:18
Definition StructurePlaceSettings.h:18