mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 16:28:49 +00:00
10 lines
207 B
C#
10 lines
207 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall
|
|||
|
{
|
|||
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
|
|||
|
class SvcImplAttribute : Attribute
|
|||
|
{
|
|||
|
}
|
|||
|
}
|