gearlib-cpp/include/gearlib/vertex.h
2024-05-16 22:37:46 +12:00

13 lines
164 B
C

#ifndef __VERTEX_H__
#define __VERTEX_H__
#include <stddef.h>
typedef struct VertexAttrib {
int type;
size_t size;
int count;
} VertexAttrib;
#endif