aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Events/CpuTraceEventArgs.cs
blob: c12781ed86ab5be38366bc1dd9ac4fb502e88ffa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

namespace ChocolArm64.Events
{
    public class CpuTraceEventArgs : EventArgs
    {
        public long Position { get; private set; }

        public CpuTraceEventArgs(long position)
        {
            Position = position;
        }
    }
}