CmifCommandAttribute.cs 325 B

123456789101112131415
  1. using System;
  2. namespace Ryujinx.Horizon.Sdk.Sf
  3. {
  4. [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
  5. class CmifCommandAttribute : Attribute
  6. {
  7. public uint CommandId { get; }
  8. public CmifCommandAttribute(uint commandId)
  9. {
  10. CommandId = commandId;
  11. }
  12. }
  13. }