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