mirror of
https://github.com/GreemDev/Ryujinx
synced 2024-11-28 20:49:22 +01:00
10 lines
216 B
C#
10 lines
216 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall
|
|||
|
{
|
|||
|
[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = true)]
|
|||
|
class PointerSizedAttribute : Attribute
|
|||
|
{
|
|||
|
}
|
|||
|
}
|