mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-01-23 08:16:25 +00:00
7 lines
192 B
C#
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;
|
|
}
|
|
} |