EightBitNet/M6502/ProfileScopeEventArgs.cs
2024-05-31 12:01:28 +01:00

33 lines
642 B
C#

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