gearlib/include/quad.h

15 lines
194 B
C
Raw Normal View History

2024-05-03 11:18:50 +12:00
#ifndef __QUAD_H__
#define __QUAD_H__
#include <gearlib.h>
typedef struct {
vec3 Position;
mat4 Transform;
vec4 Color;
} QuadVertex;
extern vec3 quad_vertex_positions[6];
#endif