mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-26 02:07:43 +02:00
14 lines
No EOL
227 B
C#
14 lines
No EOL
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;
|
|
}
|
|
}
|
|
} |