Files
EightBitNet/M6502/ProfileScopeEventArgs.cs
2024-10-09 19:48:33 +01:00

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;
}
}