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

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