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

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