aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/CommandAttributes.cs
blob: 43aadf1667aee0ff3ba789de896c660cecb00aea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
using System;

namespace Ryujinx.HLE.HOS.Services
{
    [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
    class CommandAttribute : Attribute
    {
        public readonly int Id;

        public CommandAttribute(int id) => Id = id;
    }
}