1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-20 06:40:06 -06:00
ryujinx/Ryujinx/Cpu/State/SvcEventArgs.cs

14 lines
227 B
C#
Raw Normal View History

2018-02-04 17:08:20 -06:00
using System;
namespace ChocolArm64.State
{
public class SvcEventArgs : EventArgs
{
public int Id { get; private set; }
public SvcEventArgs(int Id)
{
this.Id = Id;
}
}
}