21 lines
255 B
C++
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;
|
|
};
|