EightBitNet/M6502/ProfileScopeEventArgs.cs
2024-07-01 23:30:30 +01:00

11 lines
246 B
C#

namespace EightBit
{
public class ProfileScopeEventArgs(int id, int cycles, int count) : EventArgs
{
public int ID { get; } = id;
public int Cycles { get; } = cycles;
public int Count { get; } = count;
}
}