diff options
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Services/CommandCmifAttribute.cs')
-rw-r--r-- | src/Ryujinx.HLE/HOS/Services/CommandCmifAttribute.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/HOS/Services/CommandCmifAttribute.cs b/src/Ryujinx.HLE/HOS/Services/CommandCmifAttribute.cs new file mode 100644 index 00000000..3b3279ab --- /dev/null +++ b/src/Ryujinx.HLE/HOS/Services/CommandCmifAttribute.cs @@ -0,0 +1,12 @@ +using System; + +namespace Ryujinx.HLE.HOS.Services +{ + [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)] + class CommandCmifAttribute : Attribute + { + public readonly int Id; + + public CommandCmifAttribute(int id) => Id = id; + } +}
\ No newline at end of file |