mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-11-28 18:10:50 +01: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;
|
|
}
|
|
}
|
|
} |