Ryujinx/src/Ryujinx.HLE/HOS/Services/CommandCmifAttribute.cs
2023-04-27 23:51:14 +02:00

12 lines
No EOL
268 B
C#

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;
}
}