blob: 8fe74e6b3ed1a9dd9779ac2cd4fcdd17de5c5eb1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
using System;
namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
class SvcImplAttribute : Attribute
{
}
}
|