mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-24 14:35:29 +00:00
11 lines
246 B
C#
11 lines
246 B
C#
namespace EightBit
|
|
{
|
|
public class ProfileScopeEventArgs(int id, int cycles, int count) : EventArgs
|
|
{
|
|
public int ID { get; } = id;
|
|
|
|
public int Cycles { get; } = cycles;
|
|
|
|
public int Count { get; } = count;
|
|
}
|
|
} |