mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-07-26 04:24:15 +00:00
7 lines
189 B
C#
7 lines
189 B
C#
namespace M6502
|
|
{
|
|
public sealed class ProfileScopeEventArgs(int id, long cycles, long count) : CycleCountedEventArgs(cycles, count)
|
|
{
|
|
public int ID { get; } = id;
|
|
}
|
|
} |