LeviLamina
Loading...
Searching...
No Matches
VertexElementDescription.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace renoir {
6
8public:
9 // VertexElementDescription inner types define
10 enum class VertexType : int {
11 Byte = 0,
12 UnsignedByte = 1,
13 Short = 2,
14 UnsignedShort = 3,
15 Int = 4,
16 UnsignedInt = 5,
17 Fixed = 6,
18 Float = 7,
19 };
20
21public:
22 // member variables
23 // NOLINTBEGIN
24 ::ll::UntypedStorage<4, 4> mUnk5fe3df;
25 ::ll::UntypedStorage<4, 4> mUnkb361a8;
26 ::ll::UntypedStorage<1, 1> mUnk59e2a2;
27 ::ll::UntypedStorage<4, 4> mUnkc47807;
28 ::ll::UntypedStorage<4, 4> mUnk8187e9;
29 ::ll::UntypedStorage<4, 4> mUnkae70d5;
30 ::ll::UntypedStorage<4, 4> mUnk1bb735;
31 ::ll::UntypedStorage<4, 4> mUnk2e3b8a;
32 // NOLINTEND
33
34public:
35 // prevent constructor by default
36 VertexElementDescription& operator=(VertexElementDescription const&);
37 VertexElementDescription(VertexElementDescription const&);
38 VertexElementDescription();
39};
40
41} // namespace renoir
Definition VertexElementDescription.h:7