This repository has been archived on 2025-09-02. You can view files and clone it, but cannot push or open issues or pull requests.
Files
ryujinx/Ryujinx.HLE/HOS/Services/CommandCmifAttribute.cs
2023-04-14 20:00:34 -03:00

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