the gui problem^TM

This commit is contained in:
2025-03-21 16:16:25 -05:00
parent 7900def444
commit 6b8861a7fb
15 changed files with 316 additions and 206 deletions

View File

@@ -1,6 +1,6 @@
#include "Archimedes.h"
#include "Renderer/Renderer.h"
#include "GLFW/WindowGLFW.h"
#include "WindowGLFW/WindowGLFW.h"
namespace Archimedes {
@@ -10,13 +10,16 @@ namespace Archimedes {
~Window() {};
bool shouldClose();
bool shouldClose() { return window.shouldClose(); }
void doFrame();
Renderer& getRenderer() { return renderer; }
WindowImpl& getWindowImpl() { return window; }
private:
Renderer renderer;
WindowImpl w;
WindowImpl window;
};
}