diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-05 15:34:31 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-05 15:34:31 +0100 |
commit | 5f75bdbf3d38c94baeae52f4c4889f147ec6885e (patch) | |
tree | 5fc76975e41ae106df61a4d59559f0ab37fb52ac /src/example/particle.cpp | |
parent | 9572c5b35de2d13dbe7f942e3ecc50d28b36e9b8 (diff) |
move systems + update contributing.md
Diffstat (limited to 'src/example/particle.cpp')
-rw-r--r-- | src/example/particle.cpp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/example/particle.cpp b/src/example/particle.cpp index 53fa213..fb72b9b 100644 --- a/src/example/particle.cpp +++ b/src/example/particle.cpp @@ -1,13 +1,14 @@ -#include "Particle.h" -#include "ParticleSystem.h" -#include "SDLApp.h" -#include "api/ParticleEmitter.h" #include <chrono> +#include <iostream> +#include <thread> + #include <crepe/Component.h> #include <crepe/ComponentManager.h> +#include <crepe/Particle.h> +#include <crepe/SDLApp.h> #include <crepe/api/GameObject.h> -#include <iostream> -#include <thread> +#include <crepe/api/ParticleEmitter.h> +#include <crepe/system/ParticleSystem.h> using namespace crepe::api; using namespace crepe; |