mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-06-10 21:52:08 +00:00
9 lines
201 B
C#
9 lines
201 B
C#
namespace M6502
|
|
{
|
|
public class CycleCountedEventArgs(long cycles, long count) : EventArgs
|
|
{
|
|
public long Cycles { get; } = cycles;
|
|
|
|
public long Count { get; } = count;
|
|
}
|
|
} |