fxengine/include/fxengine/model/vertex.h

20 lines
227 B
C

#ifndef FE_MODEL_VERTEX
#define FE_MODEL_VERTEX
#include <stdint.h>
typedef struct
{
int32_t x;
int32_t y;
int32_t z;
} fe_vertex;
typedef struct
{
double x;
double y;
double z;
} fe_vertex_d;
#endif