From 5c46e0f0a924989201c6784b0f956bc442f14a7e Mon Sep 17 00:00:00 2001 From: majortom6 Date: Sun, 19 Feb 2017 09:17:35 -0600 Subject: -removed glm library, its in the debian repos -made opengl and sdl folders in includes, moved various *hpps to them --- inc/window.hpp | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 inc/window.hpp (limited to 'inc/window.hpp') diff --git a/inc/window.hpp b/inc/window.hpp deleted file mode 100644 index fc0f325..0000000 --- a/inc/window.hpp +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef window_h -#define window_h - -#include -#include -#include -#include - -#include "constants.hpp" - -class Window -{ - public: - Window(int width, int height, const std::string& title); - void Clear(float r, float g, float b, float a); - void swapBuffers(); - bool getClosed(){return closed;}; - - virtual ~Window(); - - private: - SDL_Window* main; - SDL_GLContext glContext; - bool closed; -}; - -#endif -- cgit v1.2.3