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