LeviLamina
Loading...
Searching...
No Matches
BoxSchematic.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/renderer/block/tessellation_pipeline/BoxFaceSchematic.h"
7#include "mc/deps/core/math/Matrix.h"
8
9namespace ClientBlockPipeline {
10
11struct BoxSchematic {
12public:
13 // member variables
14 // NOLINTBEGIN
15 ::ll::TypedStorage<4, 64, ::Matrix> mLocalToModelTransform;
16 ::ll::TypedStorage<4, 264, ::std::array<::ClientBlockPipeline::BoxFaceSchematic, 6>> mFaces;
17 ::ll::TypedStorage<1, 1, bool> mUsesFaceUVs;
18 ::ll::TypedStorage<1, 1, bool> mFacesHaveCull;
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 BoxSchematic(BoxSchematic const&);
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI BoxSchematic();
29
30 MCAPI ::ClientBlockPipeline::BoxSchematic& operator=(::ClientBlockPipeline::BoxSchematic const&);
31 // NOLINTEND
32
33public:
34 // constructor thunks
35 // NOLINTBEGIN
36 MCAPI void* $ctor();
37 // NOLINTEND
38};
39
40} // namespace ClientBlockPipeline
Definition BoxSchematic.h:7