-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathG3D_Mesh.hpp
54 lines (48 loc) · 1.36 KB
/
G3D_Mesh.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Copyright 2024 OpenJE
#ifndef OPENJE_RE_CPP_INCLUDE_G3D_MESH_HPP_
#define OPENJE_RE_CPP_INCLUDE_G3D_MESH_HPP_
#include "openje-re/c++/include/openje_types.hpp"
#include "openje-re/c++/include/G3D_BaseAttribute.hpp"
namespace F3
{
class G3D_Mesh
{
public:
G3D_BaseAttribute g3d_base_attribute;
dword mbr_0x20;
dword mbr_0x24;
dword mbr_0x28;
dword mbr_0x2c;
dword mbr_0x30;
dword mbr_0x34;
dword mbr_0x38;
dword mbr_0x3c;
dword mbr_0x40;
dword mbr_0x44;
dword mbr_0x48;
dword mbr_0x4c;
dword mbr_0x50;
dword mbr_0x54;
dword mbr_0x58;
dword mbr_0x5c;
dword mbr_0x60;
dword mbr_0x64;
dword mbr_0x68;
dword mbr_0x6c;
dword mbr_0x70;
dword mbr_0x74;
dword mbr_0x78;
dword mbr_0x7c;
dword mbr_0x80;
dword mbr_0x84;
dword mbr_0x88;
dword mbr_0x8c;
dword mbr_0x90;
dword mbr_0x94;
dword mbr_0x98;
public:
G3D_Mesh();
~G3D_Mesh();
};
} // namespace F3
#endif // OPENJE_RE_CPP_INCLUDE_G3D_MESH_HPP_