mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-22 10:22:40 +00:00
10 lines
213 B
C#
10 lines
213 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall
|
|
{
|
|
[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited = true)]
|
|
class PointerSizedAttribute : Attribute
|
|
{
|
|
}
|
|
}
|