// ReSharper disable MemberCanBePrivate.Global // ReSharper disable UnusedAutoPropertyAccessor.Global using System; namespace RGB.NET.Core { /// /// Represents the information supplied with an -event. /// public class UpdatingEventArgs : EventArgs { #region Properties & Fields /// /// Gets the elapsed time (in seconds) since the last update. /// public double DeltaTime { get; } #endregion #region Constructors /// /// Initializes a new instance of the class. /// /// The elapsed time (in seconds) since the last update. public UpdatingEventArgs(double deltaTime) { this.DeltaTime = deltaTime; } #endregion } }