aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Kernel/SupervisorCall/SvcAttribute.cs
blob: 24b51fb79430aceaa6bc5bfcaf1db1b46295077c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall
{
    [AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
    class SvcAttribute : Attribute
    {
        public int Id { get; }

        public SvcAttribute(int id)
        {
            Id = id;
        }
    }
}