LeviLamina
Loading...
Searching...
No Matches
BlockSchematic.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/model/FitToFrame.h"
7#include "mc/deps/core/math/Matrix.h"
8#include "mc/deps/core/math/Vec3.h"
9
10// auto generated forward declare list
11// clang-format off
12class Block;
13namespace ClientBlockPipeline { struct BlockSchematicPart; }
14namespace ClientBlockPipeline::ItemTransforms { struct Transform; }
15// clang-format on
16
17namespace ClientBlockPipeline {
18
19struct BlockSchematic {
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<4, 64, ::Matrix> mModelToGridTransform;
24 ::ll::TypedStorage<8, 24, ::std::vector<::ClientBlockPipeline::BlockSchematicPart>> mParts;
25 ::ll::TypedStorage<8, 24, ::std::vector<::std::string>> mMaterialNames;
26 ::ll::TypedStorage<8, 24, ::std::vector<::ClientBlockPipeline::ItemTransforms::Transform>> mItemTransforms;
27 ::ll::TypedStorage<1, 1, ::FitToFrame> mFitGuiItemToFrame;
28 ::ll::TypedStorage<4, 12, ::Vec3> mSchematicMax;
29 ::ll::TypedStorage<4, 12, ::Vec3> mSchematicMin;
30 // NOLINTEND
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI ::std::shared_ptr<::ClientBlockPipeline::BlockSchematic> getCopy() const;
36
37 MCAPI ~BlockSchematic();
38 // NOLINTEND
39
40public:
41 // static functions
42 // NOLINTBEGIN
43 MCAPI static ::ClientBlockPipeline::BlockSchematic const* tryGetSchematic(::Block const& block);
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49 MCAPI void $dtor();
50 // NOLINTEND
51};
52
53} // namespace ClientBlockPipeline
Definition Block.h:69
Definition BlockSchematicPart.h:7
Definition BlockSchematic.h:7