mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-02-22 06:28:59 +00:00
9 lines
204 B
C#
9 lines
204 B
C#
|
namespace EightBit
|
|||
|
{
|
|||
|
public class CycleCountedEventArgs(long cycles, long count) : EventArgs
|
|||
|
{
|
|||
|
public long Cycles { get; } = cycles;
|
|||
|
|
|||
|
public long Count { get; } = count;
|
|||
|
}
|
|||
|
}
|