move test guis to GUImodules and separate utils from modules

This commit is contained in:
2025-03-21 12:01:19 -05:00
parent 028162509e
commit 719af8e85a
11 changed files with 23 additions and 3 deletions

View File

@@ -0,0 +1,20 @@
#include "Window/Window.h"
#define GLEW_STATIC
#include <GL/glew.h>
#include <GLFW/glfw3.h>
class WindowGLFW : public Window {
public:
Window();
~Window();
bool shouldClose();
void doFrame();
private:
GLFWwindow* w;
};