Ryujinx/Ryujinx.HLE/HOS/Kernel/SupervisorCall/RAttribute.cs

16 lines
314 B
C#
Raw Normal View History

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;
}
}
}