LeviLamina
Loading...
Searching...
No Matches
JigsawStructureBlockInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/BlockPos.h"
7
8// auto generated forward declare list
9// clang-format off
10class Block;
11class CompoundTag;
12// clang-format on
13
14class JigsawStructureBlockInfo {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<4, 12, ::BlockPos> mPos;
19 ::ll::TypedStorage<8, 8, ::Block const&> mBlock;
20 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::CompoundTag>> mTag;
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 JigsawStructureBlockInfo& operator=(JigsawStructureBlockInfo const&);
26 JigsawStructureBlockInfo(JigsawStructureBlockInfo const&);
27 JigsawStructureBlockInfo();
28
29public:
30 // member functions
31 // NOLINTBEGIN
32 MCAPI JigsawStructureBlockInfo(::JigsawStructureBlockInfo&& rhs);
33
34 MCAPI JigsawStructureBlockInfo(::BlockPos const& pos, ::std::unique_ptr<::CompoundTag> tag, ::Block const& block);
35
36 MCAPI ::CompoundTag* getNonEmptyTag();
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCAPI void* $ctor(::JigsawStructureBlockInfo&& rhs);
43
44 MCAPI void* $ctor(::BlockPos const& pos, ::std::unique_ptr<::CompoundTag> tag, ::Block const& block);
45 // NOLINTEND
46};
Definition BlockPos.h:21
Definition Block.h:69
Definition CompoundTag.h:23