18 lines
198 B
C
18 lines
198 B
C
/*
|
|
* vertex_structs.h
|
|
*
|
|
* Created on: Nov 10, 2017
|
|
* Author: nullifiedcat
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
struct vertex_main
|
|
{
|
|
vec2 position;
|
|
vec2 tex_coords;
|
|
vec4 color;
|
|
int mode;
|
|
};
|
|
|