diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Kernel/SupervisorCall/RAttribute.cs')
-rw-r--r-- | Ryujinx.HLE/HOS/Kernel/SupervisorCall/RAttribute.cs | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/RAttribute.cs b/Ryujinx.HLE/HOS/Kernel/SupervisorCall/RAttribute.cs deleted file mode 100644 index c1d9eeed..00000000 --- a/Ryujinx.HLE/HOS/Kernel/SupervisorCall/RAttribute.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System; - -namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall -{ - [AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false)] - public class RAttribute : Attribute - { - public readonly int Index; - - public RAttribute(int index) - { - Index = index; - } - } -} |