mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 16:58:29 +00:00
24 lines
478 B
C#
24 lines
478 B
C#
// ReSharper disable MemberCanBePrivate.Global
|
|
// ReSharper disable UnusedAutoPropertyAccessor.Global
|
|
|
|
namespace CUE.NET.Devices.Generic.EventArgs
|
|
{
|
|
public class UpdatingEventArgs : System.EventArgs
|
|
{
|
|
#region Properties & Fields
|
|
|
|
public float DeltaTime { get; }
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
public UpdatingEventArgs(float deltaTime)
|
|
{
|
|
this.DeltaTime = deltaTime;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|