15 lines
194 B
C
15 lines
194 B
C
|
#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
|