blob: 2747552b86a48353a68f92ac3b913bdcdce9b378 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System;
namespace Ryujinx.HLE.HOS.Services
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
public class CommandAttribute : Attribute
{
public readonly int Id;
public CommandAttribute(int id) => Id = id;
}
}
|