blob: 51a7b597618725a11d61ca13d2792bba90ee97d6 (
plain) (
tree)
|
|
using System;
namespace Ryujinx.Horizon.Sdk.Sf
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
class CmifCommandAttribute : Attribute
{
public uint CommandId { get; }
public CmifCommandAttribute(uint commandId)
{
CommandId = commandId;
}
}
}
|