mesh.h 154 B

123456789101112
  1. #ifndef MESH_H
  2. #define MESH_H
  3. #include "vector3.h"
  4. #include <vector>
  5. struct Mesh{
  6. int numVertices = 0;
  7. std::vector<Vector3> vertices;
  8. };
  9. #endif