mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-11-17 14:57:08 +01:00
14 lines
227 B
C#
14 lines
227 B
C#
using System;
|
|
|
|
namespace ChocolArm64.State
|
|
{
|
|
public class SvcEventArgs : EventArgs
|
|
{
|
|
public int Id { get; private set; }
|
|
|
|
public SvcEventArgs(int Id)
|
|
{
|
|
this.Id = Id;
|
|
}
|
|
}
|
|
} |