EightBitNet/M6502/ProfileEventArgs.cs

7 lines
146 B
C#

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