couch/core/Vertex.h
2021-01-13 10:42:57 -06:00

17 lines
227 B
C++

#ifndef VERTEX_H
#define VERTEX_H
#include <vector>
#include "types.h"
struct Vertex {
Vertex();
Vertex(cfloat x, cfloat y, cfloat z);
cfloat x, y, z;
};
typedef std::vector<Vertex> VertexList;
#endif /* VERTEX_H */