work on utils
This commit is contained in:
23
utils/Window/GLFW/WindowGLFW.h
Normal file
23
utils/Window/GLFW/WindowGLFW.h
Normal file
@@ -0,0 +1,23 @@
|
||||
#include "Archimedes.h"
|
||||
|
||||
#include <GLFW/glfw3.h>
|
||||
|
||||
namespace Archimedes {
|
||||
|
||||
class WindowGLFW {
|
||||
|
||||
public:
|
||||
|
||||
WindowGLFW();
|
||||
~WindowGLFW();
|
||||
|
||||
bool shouldClose();
|
||||
|
||||
void doFrame();
|
||||
|
||||
private:
|
||||
GLFWwindow* w;
|
||||
};
|
||||
|
||||
typedef WindowGLFW WindowImpl;
|
||||
}
|
||||
Reference in New Issue
Block a user