mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-03-11 05:41:49 +00:00
24 lines
466 B
C#
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;
|
|
}
|
|
}
|
|
}
|
|
} |