mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-28 00:02:22 -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 CommandTipcAttribute : Attribute
|
|
{
|
|
public readonly int Id;
|
|
|
|
public CommandTipcAttribute(int id) => Id = id;
|
|
}
|
|
}
|