aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/SDLApp.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-23 22:23:36 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-23 22:23:36 +0200
commit6e2c5e1b57210b10f8781f103e5c46308544339f (patch)
tree9738592f2082de1881a0ea019bf3c99644134aef /src/crepe/SDLApp.h
parent9b7be419c9dcc6ebd1e504713c7b2676ca3d2fdf (diff)
more nitpicking
Diffstat (limited to 'src/crepe/SDLApp.h')
-rw-r--r--src/crepe/SDLApp.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/crepe/SDLApp.h b/src/crepe/SDLApp.h
index cdba4c3..e67947b 100644
--- a/src/crepe/SDLApp.h
+++ b/src/crepe/SDLApp.h
@@ -1,13 +1,12 @@
-#ifndef SDLAPP_HPP
-#define SDLAPP_HPP
+#pragma once
-#include "Particle.h"
-#include "api/ParticleEmitter.h"
#include <SDL2/SDL.h>
+#include "api/ParticleEmitter.h"
+
class SDLApp {
public:
- SDLApp(int windowWidth, int windowHeight);
+ SDLApp(int window_width, int window_height);
~SDLApp();
bool initialize();
@@ -25,5 +24,3 @@ private:
SDL_Window * window;
SDL_Renderer * renderer;
};
-
-#endif