diff options
Diffstat (limited to 'ChocolArm64/Events/AInstExceptionEventArgs.cs')
| -rw-r--r-- | ChocolArm64/Events/AInstExceptionEventArgs.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ChocolArm64/Events/AInstExceptionEventArgs.cs b/ChocolArm64/Events/AInstExceptionEventArgs.cs new file mode 100644 index 00000000..34f90c8e --- /dev/null +++ b/ChocolArm64/Events/AInstExceptionEventArgs.cs @@ -0,0 +1,14 @@ +using System; + +namespace ChocolArm64.Events +{ + public class AInstExceptionEventArgs : EventArgs + { + public int Id { get; private set; } + + public AInstExceptionEventArgs(int Id) + { + this.Id = Id; + } + } +}
\ No newline at end of file |
