Files
EightBitNet/M6502/ProfileScopeEventArgs.cs
2024-07-10 20:38:55 +01:00

7 lines
185 B
C#

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