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