gearlib-cpp/include/gearlib/vertex.h

13 lines
164 B
C
Raw Permalink Normal View History

2024-05-16 22:37:46 +12:00
#ifndef __VERTEX_H__
#define __VERTEX_H__
#include <stddef.h>
typedef struct VertexAttrib {
int type;
size_t size;
int count;
} VertexAttrib;
#endif