10 lines
187 B
C#
10 lines
187 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Ryujinx.Horizon.Sdk.Sf
|
|||
|
{
|
|||
|
interface IServiceObject
|
|||
|
{
|
|||
|
IReadOnlyDictionary<int, CommandHandler> GetCommandHandlers();
|
|||
|
}
|
|||
|
}
|