LeviLamina
Loading...
Searching...
No Matches
StructureBlockInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Block;
8class BlockPos;
9class CompoundTag;
10// clang-format on
11
12namespace br::worldgen {
13
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, ::Block const*> mExtraBlock;
21 ::ll::TypedStorage<8, 16, ::std::shared_ptr<::CompoundTag>> mTag;
22 // NOLINTEND
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCAPI ~StructureBlockInfo();
28 // NOLINTEND
29
30public:
31 // static functions
32 // NOLINTBEGIN
33 MCAPI static ::br::worldgen::StructureBlockInfo
34 from(::BlockPos pos, ::Block const& state, ::Block const* extraBlockState);
35 // NOLINTEND
36
37public:
38 // destructor thunk
39 // NOLINTBEGIN
40 MCAPI void $dtor();
41 // NOLINTEND
42};
43
44} // namespace br::worldgen
Definition BlockPos.h:18
Definition Block.h:36
Definition CompoundTag.h:13
Definition StructureBlockInfo.h:14