+ | Basic camera but glitched for now

This commit is contained in:
TheRedShip
2024-12-21 21:17:35 +01:00
parent d92b2ca913
commit df44327436
10 changed files with 93 additions and 25 deletions

View File

@ -24,6 +24,7 @@ class Window
~Window(void);
GLFWwindow *getWindow(void) const;
Camera *get_camera(void) const;
float getFps(void) const;
void display();
@ -36,7 +37,7 @@ class Window
private:
GLFWwindow *_window;
Camera *camera;
Camera *_camera;
float _fps;