blob: a6853ea10e06c1f2db2909d82ee72a0cd9d0d29f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System;
namespace ChocolArm64.Events
{
public class AInstExceptionEventArgs : EventArgs
{
public long Position { get; private set; }
public int Id { get; private set; }
public AInstExceptionEventArgs(long Position, int Id)
{
this.Position = Position;
this.Id = Id;
}
}
}
|