mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 07:08:37 +00:00
14 lines
250 B
C#
14 lines
250 B
C#
using System;
|
|
|
|
namespace ChocolArm64.Events
|
|
{
|
|
public class AInstExceptionEventArgs : EventArgs
|
|
{
|
|
public int Id { get; private set; }
|
|
|
|
public AInstExceptionEventArgs(int Id)
|
|
{
|
|
this.Id = Id;
|
|
}
|
|
}
|
|
} |