mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 09:08:34 +00:00
24 lines
487 B
C#
24 lines
487 B
C#
namespace CUE.NET.Devices.Keyboard.Effects
|
|
{
|
|
internal class EffectTimeContainer
|
|
{
|
|
#region Properties & Fields
|
|
|
|
internal IEffect Effect { get; set; }
|
|
|
|
internal long TicksAtLastUpdate { get; set; }
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
internal EffectTimeContainer(IEffect effect, long ticksAtLastUpdate)
|
|
{
|
|
Effect = effect;
|
|
TicksAtLastUpdate = ticksAtLastUpdate;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|