mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 16:48:40 +00:00
16 lines
313 B
C#
16 lines
313 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall
|
|||
|
{
|
|||
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
|
|||
|
class SvcAttribute : Attribute
|
|||
|
{
|
|||
|
public int Id { get; }
|
|||
|
|
|||
|
public SvcAttribute(int id)
|
|||
|
{
|
|||
|
Id = id;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|