9 lines
217 B
C#
9 lines
217 B
C#
|
namespace Ryujinx.HLE.HOS.Services.Usb
|
|||
|
{
|
|||
|
[Service("usb:hs")]
|
|||
|
[Service("usb:hs:a")] // 7.0.0+
|
|||
|
class IClientRootSession : IpcService
|
|||
|
{
|
|||
|
public IClientRootSession(ServiceCtx context) { }
|
|||
|
}
|
|||
|
}
|