/ src / Ryujinx.HLE / HOS / Kernel / SupervisorCall / SvcAttribute.cs
SvcAttribute.cs
 1  using System;
 2  
 3  namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall
 4  {
 5      [AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
 6      class SvcAttribute : Attribute
 7      {
 8          public int Id { get; }
 9  
10          public SvcAttribute(int id)
11          {
12              Id = id;
13          }
14      }
15  }