mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-08-11 17:25:54 +00:00
7 lines
185 B
C#
7 lines
185 B
C#
namespace EightBit
|
|
{
|
|
public class ProfileScopeEventArgs(int id, long cycles, long count) : CycleCountedEventArgs(cycles, count)
|
|
{
|
|
public int ID { get; } = id;
|
|
}
|
|
} |