Ryujinx/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcAttribute.cs
2023-04-27 23:51:14 +02:00

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;
}
}
}