mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2024-12-22 10:30:46 +00:00
cd4af67177
Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
23 lines
556 B
C#
23 lines
556 B
C#
// <copyright file="ProfileScopeEventArgs.cs" company="Adrian Conlon">
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
// </copyright>
|
|
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; }
|
|
}
|
|
} |