mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-30 00:12:23 -05:00
13 lines
266 B
C#
13 lines
266 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;
|
|
}
|
|
}
|