Thanks to @Gawaboumga Former-commit-id: 7f8ecb5aa4d03297c0f2a70cb0f31984a7d31a62 [formerly fcaf6069180a973507da5b4d92d9bb0885707327] [formerly 92afa50ce2827d97a771bf2c74250141a94f1bcb [formerly 1c1a8435853fffabd8ef6d31a24a312d96930bd8]] Former-commit-id: 341e8fc6faf6318f6ea1a0656f79b1b47cfd15f4 [formerly c2f0ba53e3d2f700f5109b25fa71838ebe6527bd] Former-commit-id: 3526c10e8e8ba9cc0f38373ed8c5df6634248831
32 lines
668 B
C++
32 lines
668 B
C++
// Copyright (C) 2015 Jérôme Leclercq
|
|
// This file is part of the "Nazara Development Kit"
|
|
// For conditions of distribution and use, see copyright notice in Prerequesites.hpp
|
|
|
|
#pragma once
|
|
|
|
#ifndef NDK_SERVER
|
|
#ifndef NDK_SYSTEMS_PARTICLESYSTEM_HPP
|
|
#define NDK_SYSTEMS_PARTICLESYSTEM_HPP
|
|
|
|
#include <NDK/System.hpp>
|
|
|
|
namespace Ndk
|
|
{
|
|
class NDK_API ParticleSystem : public System<ParticleSystem>
|
|
{
|
|
public:
|
|
ParticleSystem();
|
|
~ParticleSystem() = default;
|
|
|
|
static SystemIndex systemIndex;
|
|
|
|
private:
|
|
void OnUpdate(float elapsedTime) override;
|
|
};
|
|
}
|
|
|
|
#include <NDK/Systems/ParticleSystem.inl>
|
|
|
|
#endif // NDK_SYSTEMS_PARTICLESYSTEM_HPP
|
|
#endif // NDK_SERVER
|