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

24 lines
320 B
C++

#include "Archimedes.h"
#include <GLFW/glfw3.h>
namespace Archimedes {
class WindowGLFW {
public:
WindowGLFW();
~WindowGLFW();
bool shouldClose();
void doFrame();
private:
GLFWwindow* w;
};
typedef WindowGLFW WindowImpl;
}