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