EightBitNet/M6502/ProfileEventArgs.cs
2024-09-18 11:23:51 +01:00

7 lines
153 B
C#

namespace EightBit
{
public sealed class ProfileEventArgs(string output) : EventArgs
{
public string Output { get; } = output;
}
}