21 lines
278 B
C++
21 lines
278 B
C++
#include "Window/Window.h"
|
|
|
|
#define GLEW_STATIC
|
|
#include <GL/glew.h>
|
|
#include <GLFW/glfw3.h>
|
|
|
|
class WindowGLFW : public Window {
|
|
|
|
public:
|
|
|
|
Window();
|
|
~Window();
|
|
|
|
bool shouldClose();
|
|
|
|
void doFrame();
|
|
|
|
private:
|
|
GLFWwindow* w;
|
|
};
|