mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-25 06:31:37 +00:00
20 lines
416 B
C#
20 lines
416 B
C#
|
namespace EightBit
|
|||
|
{
|
|||
|
using System;
|
|||
|
|
|||
|
public class ProfileScopeEventArgs : EventArgs
|
|||
|
{
|
|||
|
public ProfileScopeEventArgs(string scope, ulong cycles, ulong count)
|
|||
|
{
|
|||
|
this.Scope = scope;
|
|||
|
this.Cycles = cycles;
|
|||
|
this.Count = count;
|
|||
|
}
|
|||
|
|
|||
|
public string Scope { get; }
|
|||
|
|
|||
|
public ulong Cycles { get; }
|
|||
|
|
|||
|
public ulong Count { get; }
|
|||
|
}
|
|||
|
}
|