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