mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-16 02:00:17 +00:00
9 lines
187 B
C#
9 lines
187 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Sf
|
|
{
|
|
interface IServiceObject
|
|
{
|
|
IReadOnlyDictionary<int, CommandHandler> GetCommandHandlers();
|
|
}
|
|
}
|