mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-22 13:00:53 -05:00
10 lines
204 B
C#
10 lines
204 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
|
|
class SvcImplAttribute : Attribute
|
|
{
|
|
}
|
|
}
|