mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-28 07:22:23 -05:00
Move solution and projects to src
This commit is contained in:
12
src/Ryujinx.HLE/HOS/Services/CommandTIpcAttribute.cs
Normal file
12
src/Ryujinx.HLE/HOS/Services/CommandTIpcAttribute.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user