mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 12:29:00 +00:00
16 lines
314 B
C#
16 lines
314 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|