aboutsummaryrefslogtreecommitdiff
path: root/gameloop/include/window.h
diff options
context:
space:
mode:
Diffstat (limited to 'gameloop/include/window.h')
-rw-r--r--gameloop/include/window.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/gameloop/include/window.h b/gameloop/include/window.h
new file mode 100644
index 0000000..b4f2b78
--- /dev/null
+++ b/gameloop/include/window.h
@@ -0,0 +1,22 @@
+#pragma once
+#include <SDL2/SDL.h>
+class WindowManager{
+ public:
+ WindowManager();
+ virtual ~WindowManager();
+ bool loadMedia();
+ void update();
+ bool init();
+ void close();
+ bool initWindow();
+ void destroyWindow();
+ SDL_Renderer* getRenderer();
+ private:
+ //Loads media
+ //Frees media and shuts down SDL
+
+ const int SCREEN_WIDTH = 800;
+ const int SCREEN_HEIGHT = 600;
+ SDL_Window* window = NULL;
+ SDL_Renderer* renderer = NULL;
+};