mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-24 13:20:06 +02:00
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
16 lines
310 B
C#
16 lines
310 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.HOS.Kernel.SupervisorCall
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
|
|
class SvcAttribute : Attribute
|
|
{
|
|
public int Id { get; }
|
|
|
|
public SvcAttribute(int id)
|
|
{
|
|
Id = id;
|
|
}
|
|
}
|
|
}
|