diff options
author | jaroWMR <jarorutjes07@gmail.com> | 2024-10-10 08:38:40 +0200 |
---|---|---|
committer | jaroWMR <jarorutjes07@gmail.com> | 2024-10-10 08:38:40 +0200 |
commit | d001c4ba95a72f13c942f1a24eb98fe1584d93a4 (patch) | |
tree | 8d72f1ddf9baf591fdf99397aa1495a219d35d35 /src/crepe/SDLApp.h | |
parent | 163c9e3eea437daa8ef6007fbdf2f91470066cbf (diff) |
Renamed files and Emitter is a component
Diffstat (limited to 'src/crepe/SDLApp.h')
-rw-r--r-- | src/crepe/SDLApp.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/crepe/SDLApp.h b/src/crepe/SDLApp.h new file mode 100644 index 0000000..8915d30 --- /dev/null +++ b/src/crepe/SDLApp.h @@ -0,0 +1,28 @@ +#ifndef SDLAPP_HPP +#define SDLAPP_HPP + +#include <SDL2/SDL.h> +#include "Particle.h" +#include "ParticleEmitter.h" + +class SDLApp { +public: + SDLApp(int windowWidth, int windowHeight); + ~SDLApp(); + + bool initialize(); + void handleEvents(bool& running); + void clearScreen(); + void presentScreen(); + void drawSquare(int x, int y, int size); + void cleanUp(); + void drawParticles(const std::vector<crepe::ParticleEmitter>& emitters); + void drawMultipleSquares(const std::vector<SDL_Rect>& squares); +private: + int windowWidth; + int windowHeight; + SDL_Window* window; + SDL_Renderer* renderer; +}; + +#endif |