Files
EightBitNet/M6502/ProfileScopeEventArgs.cs
2024-09-18 11:23:51 +01:00

7 lines
192 B
C#

namespace EightBit
{
public sealed class ProfileScopeEventArgs(int id, long cycles, long count) : CycleCountedEventArgs(cycles, count)
{
public int ID { get; } = id;
}
}