1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-03-22 11:35:44 -05:00
ryujinx/ChocolArm64/State/AInstExceptEventArgs.cs

14 lines
243 B
C#
Raw Normal View History

2018-02-04 20:08:20 -03:00
using System;
namespace ChocolArm64.State
{
public class AInstExceptEventArgs : EventArgs
2018-02-04 20:08:20 -03:00
{
public int Id { get; private set; }
public AInstExceptEventArgs(int Id)
2018-02-04 20:08:20 -03:00
{
this.Id = Id;
}
}
}