the gui problem^TM
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user