mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-11-23 23:18:12 +00:00
9 lines
208 B
C#
9 lines
208 B
C#
namespace EightBit
|
|
{
|
|
public class ProfileLineEventArgs(string source, int cycles) : EventArgs
|
|
{
|
|
public string Source { get; } = source;
|
|
|
|
public int Cycles { get; } = cycles;
|
|
}
|
|
} |