move test guis to GUImodules and separate utils from modules
This commit is contained in:
20
utils/Window/GLFW/windowGLFW.h
Normal file
20
utils/Window/GLFW/windowGLFW.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#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;
|
||||
};
|
||||
Reference in New Issue
Block a user