DumpDVD/DumpDVD/Gui/DvdSpin/vec.hpp

27 lines
288 B
C++

#ifndef _LI_VEC_H
#define _LI_VEC_H 1
typedef struct Vec2{
float x;
float y;
} Vec2;
typedef struct Vec3{
float x;
float y;
float z;
} Vec3;
typedef struct Vec4{
float x;
float y;
float z;
float w;
} Vec4;
typedef struct Vertex{
Vec3 Pos;
Vec2 Uv;
} ModelVertex;
#endif