mesh.h 209 B

123456789101112131415
  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. int numFaces = 0;
  9. std::vector<Vector3> faces;
  10. };
  11. #endif