mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-24 14:49:48 -06:00
14 lines
241 B
C#
14 lines
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;
|
|
}
|
|
}
|
|
} |