aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcImplAttribute.cs
blob: a32d851f6e1bb687b102fd88b4fa4f4ee1acf1fc (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
    {
    }
}