Ryujinx/ChocolArm64/Events/AInstExceptionEventArgs.cs
2018-06-26 01:10:15 -03:00

16 lines
367 B
C#

using System;
namespace ChocolArm64.Events
{
public class AInstExceptionEventArgs : EventArgs
{
public long Position { get; private set; }
public int Id { get; private set; }
public AInstExceptionEventArgs(long Position, int Id)
{
this.Position = Position;
this.Id = Id;
}
}
}