mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 08:38:41 +00:00
16 lines
367 B
C#
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;
|
|
}
|
|
}
|
|
} |