| 123456789101112131415 |
- 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;
- }
- }
- }
|