mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-07 16:33:05 +00:00
17 lines
No EOL
409 B
C#
17 lines
No EOL
409 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
|
|
class ServiceAttribute : Attribute
|
|
{
|
|
public readonly string Name;
|
|
public readonly object Parameter;
|
|
|
|
public ServiceAttribute(string name, object parameter = null)
|
|
{
|
|
Name = name;
|
|
Parameter = parameter;
|
|
}
|
|
}
|
|
} |