added the readme

This commit is contained in:
2026-06-08 17:07:34 -04:00
commit 6655fd2886
1001 changed files with 253651 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#ifndef MESH_DATA_CLASS
#define MESH_DATA_CLASS
#include <vector>
#include <glm/glm.hpp>
#include "Vertex.h"
class MeshData {
public:
std::vector<Vertex> vertices;
std::vector<GLuint> indices;
};
class RigMeshData {
public:
std::vector<RigVertex> vertices;
std::vector<GLuint> indices;
};
#endif