summaryrefslogtreecommitdiff
path: root/inc/window.h
diff options
context:
space:
mode:
Diffstat (limited to 'inc/window.h')
-rw-r--r--inc/window.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/inc/window.h b/inc/window.h
deleted file mode 100644
index d2dd801..0000000
--- a/inc/window.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef window_h
-#define window_h
-
-#include <SDL2/SDL.h>
-#include <SDL2/SDL_image.h>
-#include <string>
-#include <cmath>
-#include <stdlib.h>
-#include <time.h>
-#include <iostream>
-
-class Window
-{
- public:
- Window();
- void Destroy();
-
- void Clear();
- void Render();
- SDL_Renderer* getRenderer();
-
- private:
- SDL_Window* main;
- SDL_Renderer* renderer;
-};
-
-#endif