Files
Archimedes/utils/Window/WindowGLFW/WindowGLFW.h
2025-03-21 16:16:25 -05:00

28 lines
403 B
C++

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