aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/CommandCmifAttribute.cs
blob: 3b3279ab68a9c96dc8f0d52f413ab787518585b0 (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 CommandCmifAttribute : Attribute
    {
        public readonly int Id;

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