mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-09 07:34:13 +00:00
c4d52512b2
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
17 lines
336 B
C#
17 lines
336 B
C#
namespace EightBit
|
|
{
|
|
using System;
|
|
|
|
public class ProfileLineEventArgs : EventArgs
|
|
{
|
|
public ProfileLineEventArgs(string source, ulong cycles)
|
|
{
|
|
this.Source = source;
|
|
this.Cycles = cycles;
|
|
}
|
|
|
|
public string Source { get; }
|
|
|
|
public ulong Cycles { get; }
|
|
}
|
|
} |