mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-01-11 08:29:36 +00: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;
|
|
}
|
|
}
|
|
} |