mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 00:58:31 +00:00
21 lines
375 B
C#
21 lines
375 B
C#
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
|
|
}
|
|
}
|