Files
Archimedes/modules/Window/src/WindowImpl/GLFW/windowGLFW.h
2025-03-17 10:44:48 -05:00

21 lines
255 B
C++

#include "Archimedes.h"
#define GLEW_STATIC
#include <GL/glew.h>
#include <GLFW/glfw3.h>
class Window {
public:
Window();
~Window();
bool shouldClose();
void doFrame();
private:
GLFWwindow* w;
};