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