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