mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-08 08:53:04 +00:00
15 lines
313 B
C#
15 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;
|
|
}
|
|
}
|
|
}
|