mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-12-03 15:27:26 +00:00
14 lines
No EOL
241 B
C#
14 lines
No EOL
241 B
C#
using System;
|
|
|
|
namespace ChocolArm64.State
|
|
{
|
|
public class AExceptionEventArgs : EventArgs
|
|
{
|
|
public int Id { get; private set; }
|
|
|
|
public AExceptionEventArgs(int Id)
|
|
{
|
|
this.Id = Id;
|
|
}
|
|
}
|
|
} |