LeviLamina
Loading...
Searching...
No Matches
JigsawEditorData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/shared_types/world/level/levelgen/structure/JigsawJointType.h"
7
8// auto generated forward declare list
9// clang-format off
10class CompoundTag;
11class DataLoadHelper;
12// clang-format on
13
14class JigsawEditorData {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 32, ::std::string> mName;
19 ::ll::TypedStorage<8, 32, ::std::string> mTarget;
20 ::ll::TypedStorage<8, 32, ::std::string> mTargetPool;
21 ::ll::TypedStorage<8, 32, ::std::string> mFinalBlock;
22 ::ll::TypedStorage<1, 1, ::SharedTypes::JigsawJointType> mJointType;
23 ::ll::TypedStorage<4, 4, int> mPlacementPriority;
24 ::ll::TypedStorage<4, 4, int> mSelectionPriority;
25 ::ll::TypedStorage<1, 1, bool> mJointTypeVisible;
26 // NOLINTEND
27
28public:
29 // prevent constructor by default
30 JigsawEditorData();
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI JigsawEditorData(::JigsawEditorData const&);
36
37 MCAPI void load(::CompoundTag const& tag, ::DataLoadHelper& dataLoadHelper);
38
39 MCFOLD ::JigsawEditorData& operator=(::JigsawEditorData&&);
40
41 MCFOLD ::JigsawEditorData& operator=(::JigsawEditorData const&);
42
43 MCAPI void save(::CompoundTag& tag) const;
44
45 MCAPI ~JigsawEditorData();
46 // NOLINTEND
47
48public:
49 // static variables
50 // NOLINTBEGIN
51 MCAPI static ::std::unordered_map<int, ::std::string> const& JOINT_TYPE_TO_NAME();
52 // NOLINTEND
53
54public:
55 // constructor thunks
56 // NOLINTBEGIN
57 MCAPI void* $ctor(::JigsawEditorData const&);
58 // NOLINTEND
59
60public:
61 // destructor thunk
62 // NOLINTBEGIN
63 MCFOLD void $dtor();
64 // NOLINTEND
65};
Definition CompoundTag.h:23
Definition DataLoadHelper.h:20