LeviLamina
Loading...
Searching...
No Matches
JigsawBlockInfo.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;
10// clang-format on
11
13public:
14 // member variables
15 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 JigsawBlockInfo& operator=(JigsawBlockInfo const&);
27
28public:
29 // member functions
30 // NOLINTBEGIN
32
33 MCAPI JigsawBlockInfo(
34 ::BlockPos const& pos,
35 ::Block const* block,
36 ::Block const* finalBlock,
37 ::JigsawEditorData editorData
38 );
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
44 MCAPI void* $ctor(::JigsawBlockInfo&&);
45
46 MCAPI void*
47 $ctor(::BlockPos const& pos, ::Block const* block, ::Block const* finalBlock, ::JigsawEditorData editorData);
48 // NOLINTEND
49};
Definition BlockPos.h:18
Definition Block.h:36
Definition JigsawBlockInfo.h:12
Definition JigsawEditorData.h:11
Definition Alias.h:14