mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-02-21 15:29:04 +00:00
7 lines
202 B
C#
7 lines
202 B
C#
namespace EightBit
|
|
{
|
|
public class ProfileLineEventArgs(string source, long cycles, long count) : CycleCountedEventArgs(cycles, count)
|
|
{
|
|
public string Source { get; } = source;
|
|
}
|
|
} |