smrendererv3/SMCode/SM.Base/Drawing/Particles/ParticleContext.cs
2021-03-17 17:09:59 +01:00

24 lines
No EOL
518 B
C#

#region usings
using SM.Base.Time;
#endregion
namespace SM.Base.Drawing.Particles
{
/// <summary>
/// A context, with that the particle system sends the information for the movement function.
/// </summary>
public struct ParticleContext
{
/// <summary>
/// The Timer of the particles
/// </summary>
public Timer Timer;
/// <summary>
/// The current speed of the particles.
/// </summary>
public float Speed;
}
}