diff options
author | JAROWMR <jarorutjes07@gmail.com> | 2024-11-10 18:30:10 +0100 |
---|---|---|
committer | JAROWMR <jarorutjes07@gmail.com> | 2024-11-10 18:30:10 +0100 |
commit | 0006e959643f0150acd230b174287a85d4cb3255 (patch) | |
tree | 533780aa22de1e1768a22224e4626107ef71a62b /src/crepe/system/ParticleSystem.h | |
parent | 08d48aabac838a641ef918da92d9827b214e5da6 (diff) |
added forward declaration and const reference sprite
Diffstat (limited to 'src/crepe/system/ParticleSystem.h')
-rw-r--r-- | src/crepe/system/ParticleSystem.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crepe/system/ParticleSystem.h b/src/crepe/system/ParticleSystem.h index df89ed9..023a886 100644 --- a/src/crepe/system/ParticleSystem.h +++ b/src/crepe/system/ParticleSystem.h @@ -1,9 +1,9 @@ #pragma once -#include "../api/ParticleEmitter.h" namespace crepe { - +class ParticleEmitter; +class Transform; /** * \brief ParticleSystem class responsible for managing particle emission, updates, and bounds checking. */ |