+ Parsing object system

This commit is contained in:
TheRedShip
2024-12-26 23:06:49 +01:00
parent 2f217b50e9
commit 8941169f4a
13 changed files with 218 additions and 58 deletions

View File

@ -24,7 +24,11 @@
# include "GLFW/glfw3.h"
# include <iostream>
# include <fstream>
# include <sstream>
# include <string>
# include <memory>
# include <map>
struct Vertex {
glm::vec2 position;
@ -38,6 +42,7 @@ struct Vertex {
# include "Window.hpp"
# include "Shader.hpp"
# include "Scene.hpp"
# include "SceneParser.hpp"