mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-02-08 21:30:25 +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;
|
|
}
|
|
} |