blob: 5b4f30da941813eebcd29ee86b3bee3b7f9d87f0 (
plain) (
tree)
|
|
using System;
namespace Ryujinx.HLE.HOS.Services
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
class CommandCmifAttribute : Attribute
{
public readonly int Id;
public CommandCmifAttribute(int id) => Id = id;
}
}
|