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

24 lines
466 B
C#

namespace EightBit
{
public class ProfileLineEventArgs(string source, int cycles) : EventArgs
{
private readonly string source = source;
private readonly int cycles = cycles;
public string Source
{
get
{
return this.source;
}
}
public int Cycles
{
get
{
return this.cycles;
}
}
}
}