RAttribute.cs 314 B

123456789101112131415
  1. using System;
  2. namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall
  3. {
  4. [AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false)]
  5. public class RAttribute : Attribute
  6. {
  7. public readonly int Index;
  8. public RAttribute(int index)
  9. {
  10. Index = index;
  11. }
  12. }
  13. }