new/include/mesh.h
2025-12-17 23:34:49 -06:00

14 lines
158 B
C

#ifdef __cplusplus
extern "C" {
#endif
struct mesh {
unsigned int vtx;
unsigned int idx;
unsigned int length;
};
#ifdef __cplusplus
}
#endif