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
12namespace ClientBlockPipeline { struct BlockSchematicPart; }
13namespace ClientBlockPipeline::ItemTransforms { struct Transform; }
14// clang-format on
15
16namespace ClientBlockPipeline {
17
18struct BlockSchematic {
19public:
20 // member variables
21 // NOLINTBEGIN
22 ::ll::TypedStorage<4, 64, ::Matrix> mModelToGridTransform;
23 ::ll::TypedStorage<8, 24, ::std::vector<::ClientBlockPipeline::BlockSchematicPart>> mParts;
24 ::ll::TypedStorage<8, 24, ::std::vector<::std::string>> mMaterialNames;
25 ::ll::TypedStorage<8, 24, ::std::vector<::ClientBlockPipeline::ItemTransforms::Transform>> mItemTransforms;
26 ::ll::TypedStorage<1, 1, ::FitToFrame> mFitGuiItemToFrame;
27 ::ll::TypedStorage<4, 12, ::Vec3> mSchematicMax;
28 ::ll::TypedStorage<4, 12, ::Vec3> mSchematicMin;
29 // NOLINTEND
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCAPI BlockSchematic();
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40 MCAPI void* $ctor();
41 // NOLINTEND
42};
43
44} // namespace ClientBlockPipeline
Definition BlockSchematicPart.h:7
Definition BlockSchematic.h:7