0
0
Fork 0
This repository has been archived on 2024-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
ryujinx-final/ChocolArm64/Events/AInstExceptionEventArgs.cs
2018-06-26 01:10:15 -03:00

16 lines
No EOL
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;
}
}
}