mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-03-11 05:41:49 +00:00
12 lines
349 B
C#
12 lines
349 B
C#
// <copyright file="ProfileLineEventArgs.cs" company="Adrian Conlon">
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
// </copyright>
|
|
namespace MC6809
|
|
{
|
|
public class ProfileLineEventArgs(string source, ulong cycles) : EventArgs
|
|
{
|
|
public string Source { get; } = source;
|
|
|
|
public ulong Cycles { get; } = cycles;
|
|
}
|
|
} |