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