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

15 lines
277 B
C#

namespace EightBit
{
public class ProfileEventArgs(string output) : EventArgs
{
private readonly string output = output;
public string Output
{
get
{
return this.output;
}
}
}
}