mirror of
https://github.com/aaru-dps/RedBookPlayer.git
synced 2025-12-16 19:24:41 +00:00
11 lines
225 B
C#
11 lines
225 B
C#
using System;
|
|
|
|
namespace RedBookPlayer
|
|
{
|
|
public class HiResTimerElapsedEventArgs : EventArgs
|
|
{
|
|
internal HiResTimerElapsedEventArgs(float delay) => Delay = delay;
|
|
|
|
public float Delay { get; }
|
|
}
|
|
} |