Files
Archimedes/utils/Window/Window.h
2025-03-21 13:38:31 -05:00

23 lines
319 B
C++

#include "Archimedes.h"
#include "Renderer/Renderer.h"
#include "GLFW/WindowGLFW.h"
namespace Archimedes {
class Window {
public:
~Window() {};
bool shouldClose();
void doFrame();
private:
Renderer renderer;
WindowImpl w;
};
}