diff options
Diffstat (limited to 'Ryujinx.Horizon/Sdk/Sf/CmifCommandAttribute.cs')
-rw-r--r-- | Ryujinx.Horizon/Sdk/Sf/CmifCommandAttribute.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Ryujinx.Horizon/Sdk/Sf/CmifCommandAttribute.cs b/Ryujinx.Horizon/Sdk/Sf/CmifCommandAttribute.cs new file mode 100644 index 00000000..51a7b597 --- /dev/null +++ b/Ryujinx.Horizon/Sdk/Sf/CmifCommandAttribute.cs @@ -0,0 +1,15 @@ +using System; + +namespace Ryujinx.Horizon.Sdk.Sf +{ + [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] + class CmifCommandAttribute : Attribute + { + public uint CommandId { get; } + + public CmifCommandAttribute(uint commandId) + { + CommandId = commandId; + } + } +} |