#ifndef WINDOW_H #define WINDOW_H #include #include #include class Window { private: SDL_Window* win; SDL_Renderer* ren; SDL_Event e; bool Running; public: bool step = false; Window(std::string title, int width, int height); virtual ~Window(); void Draw(std::function setup, std::function draw); void Events(std::function draw); void DrawCircle(SDL_Renderer*, int, int, int, bool); SDL_Renderer* GetRenderer(); }; #endif /* WINDOW_H */