+ 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

@ -20,11 +20,10 @@ class Scene;
class Window
{
public:
Window(int width, int height, const char *title, int sleep);
Window(Scene *scene, int width, int height, const char *title, int sleep);
~Window(void);
GLFWwindow *getWindow(void) const;
Scene *getScene(void) const;
float getFps(void) const;
void display();