CommandTIpcAttribute.cs 269 B

123456789101112
  1. using System;
  2. namespace Ryujinx.HLE.HOS.Services
  3. {
  4. [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
  5. class CommandTipcAttribute : Attribute
  6. {
  7. public readonly int Id;
  8. public CommandTipcAttribute(int id) => Id = id;
  9. }
  10. }