Files
EightBitNet/M6502/ProfileScopeEventArgs.cs

11 lines
261 B
C#

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