1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-20 14:03:35 +01:00
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;
}
}
}