mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-06-08 04:05:26 +00:00
12 lines
268 B
C#
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;
|
|
}
|
|
} |