mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 17:45:26 +00:00
12 lines
267 B
C#
12 lines
267 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|