From baa7977e0e325e92c700c47b4adea9082749f1d7 Mon Sep 17 00:00:00 2001 From: tom Date: Sat, 2 May 2015 22:45:16 -0500 Subject: renamed so atom detects it is a cpp file :x --- inc/window.hpp | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 inc/window.hpp (limited to 'inc/window.hpp') diff --git a/inc/window.hpp b/inc/window.hpp new file mode 100644 index 0000000..d2dd801 --- /dev/null +++ b/inc/window.hpp @@ -0,0 +1,27 @@ +#ifndef window_h +#define window_h + +#include +#include +#include +#include +#include +#include +#include + +class Window +{ + public: + Window(); + void Destroy(); + + void Clear(); + void Render(); + SDL_Renderer* getRenderer(); + + private: + SDL_Window* main; + SDL_Renderer* renderer; +}; + +#endif -- cgit v1.2.3