From a91d603f63f6ac98640eb58fabbd773096ba6278 Mon Sep 17 00:00:00 2001 From: jaroWMR Date: Thu, 7 Nov 2024 19:09:32 +0100 Subject: remove sdlapp --- src/crepe/facade/SDLApp.h | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/crepe/facade/SDLApp.h (limited to 'src/crepe/facade/SDLApp.h') diff --git a/src/crepe/facade/SDLApp.h b/src/crepe/facade/SDLApp.h deleted file mode 100644 index 6d8f3f4..0000000 --- a/src/crepe/facade/SDLApp.h +++ /dev/null @@ -1,26 +0,0 @@ -#pragma once - -#include - -#include "../api/ParticleEmitter.h" - -class SDLApp { -public: - SDLApp(int window_width, int window_height); - ~SDLApp(); - - bool initialize(); - void handle_events(bool & running); - void clear_screen(); - void present_screen(); - void draw_square(int x, int y, int size); - void clean_up(); - void draw_particles(const std::vector & emitters); - void draw_multiple_squares(const std::vector & squares); - -private: - int window_width; - int window_height; - SDL_Window * window; - SDL_Renderer * renderer; -}; -- cgit v1.2.3