LeviLamina
Loading...
Searching...
No Matches
JigsawBlockData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Editor::Services {
6
7struct JigsawBlockData {
8public:
9 // member variables
10 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 JigsawBlockData(JigsawBlockData const&);
24 JigsawBlockData();
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCNAPI ::Editor::Services::JigsawBlockData& operator=(::Editor::Services::JigsawBlockData&&);
30
31 MCNAPI ::Editor::Services::JigsawBlockData& operator=(::Editor::Services::JigsawBlockData const&);
32
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39 MCNAPI void $dtor();
40 // NOLINTEND
41};
42
43} // namespace Editor::Services
Definition JigsawBlockData.h:7
MCAPI::Editor::Services::JigsawBlockData & operator=(::Editor::Services::JigsawBlockData const &)
MCAPI::Editor::Services::JigsawBlockData & operator=(::Editor::Services::JigsawBlockData &&)
Definition Alias.h:14