mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-03-11 05:41:49 +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;
|
|
}
|
|
} |