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#include "mc/world/level/BlockPos.h"
9#include "mc/world/level/levelgen/structure/BoundingBox.h"
10
11// auto generated forward declare list
12// clang-format off
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 MCNAPI void $dtor();
49 // NOLINTEND
50};
51
52} // namespace br::worldgen
Definition StructurePlaceSettings.h:18