work on window module

This commit is contained in:
2025-03-16 00:08:15 -05:00
parent 53c1855a29
commit cec2adec97
4 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#include "Archimedes.h"
#include <GLFW/glfw3.h>
class Window {
public:
Window();
~Window();
private:
GLFWwindow* w;
};