Graphics: Rename ParticleSystem to ParticleGroup

Preparing for integration into the ECS


Former-commit-id: dbed63966f6c5e888a8b4f1c8f804c98d1c75458 [formerly cb6fa165276003b8d68932a95632025794557682]
Former-commit-id: ebce6b98f3e2ef8c5fc8d598b6cdc9e96fd0becc
This commit is contained in:
Lynix
2016-07-29 13:24:19 +02:00
parent 7c7658a48c
commit 44bec7f44b
9 changed files with 66 additions and 66 deletions

View File

@@ -18,7 +18,7 @@ namespace Nz
{
class ParticleController;
class ParticleMapper;
class ParticleSystem;
class ParticleGroup;
using ParticleControllerConstRef = ObjectRef<const ParticleController>;
using ParticleControllerLibrary = ObjectLibrary<ParticleController>;
@@ -34,7 +34,7 @@ namespace Nz
ParticleController(const ParticleController& controller);
virtual ~ParticleController();
virtual void Apply(ParticleSystem& system, ParticleMapper& mapper, unsigned int startId, unsigned int endId, float elapsedTime) = 0;
virtual void Apply(ParticleGroup& system, ParticleMapper& mapper, unsigned int startId, unsigned int endId, float elapsedTime) = 0;
// Signals:
NazaraSignal(OnParticleControllerRelease, const ParticleController* /*particleController*/);