mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
20 lines
461 B
C#
20 lines
461 B
C#
using System;
|
|
|
|
namespace Artemis.Core.Events
|
|
{
|
|
public class PropertyGroupUpdatingEventArgs : EventArgs
|
|
{
|
|
public PropertyGroupUpdatingEventArgs(double deltaTime)
|
|
{
|
|
DeltaTime = deltaTime;
|
|
}
|
|
|
|
public PropertyGroupUpdatingEventArgs(TimeSpan overrideTime)
|
|
{
|
|
OverrideTime = overrideTime;
|
|
}
|
|
|
|
public double DeltaTime { get; }
|
|
public TimeSpan OverrideTime { get; }
|
|
}
|
|
} |