forked from Mirror/Ryujinx
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;
|
|
}
|
|
}
|
|
} |