mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-18 19:25:48 +00:00
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();
|
|
}
|
|
}
|