Files
fall-fever/defines.h
2020-09-02 18:37:53 +02:00

19 lines
213 B
C

#pragma once
struct Vertex {
// Postition
float x;
float y;
float z;
// UV Texture Mapping
float u;
float v;
// Color
float r;
float g;
float b;
float a;
};