mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2026-02-22 08:26:52 -05:00
9 lines
170 B
C#
9 lines
170 B
C#
namespace Ryujinx.HLE.HOS.Services.Mig
|
|
{
|
|
[Service("mig:usr")] // 4.0.0+
|
|
class IService : IpcService
|
|
{
|
|
public IService(ServiceCtx context) { }
|
|
}
|
|
}
|