9 lines
207 B
C#
9 lines
207 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
|
|
class SvcImplAttribute : Attribute
|
|
{
|
|
}
|
|
}
|