1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-12 16:58:29 +00:00
CUE.NET/Devices/Generic/EventArgs/UpdatingEventArgs.cs
2016-09-11 10:55:14 +02:00

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
}
}