2019-07-11 21:13:43 -04:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services
|
|
|
|
|
{
|
|
|
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
|
2023-04-14 19:00:34 -04:00
|
|
|
|
class CommandCmifAttribute : Attribute
|
2019-07-11 21:13:43 -04:00
|
|
|
|
{
|
|
|
|
|
public readonly int Id;
|
|
|
|
|
|
2023-04-14 19:00:34 -04:00
|
|
|
|
public CommandCmifAttribute(int id) => Id = id;
|
2019-07-11 21:13:43 -04:00
|
|
|
|
}
|
|
|
|
|
}
|