SvcAttribute.cs 313 B

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