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