mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-20 05:30:18 +00:00
15 lines
325 B
C#
15 lines
325 B
C#
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;
|
|
}
|
|
}
|
|
}
|