15 lines
189 B
C
15 lines
189 B
C
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct mesh {
|
|
unsigned int vtx;
|
|
unsigned int idx;
|
|
unsigned int length;
|
|
unsigned int vertex_array;
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|