mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-12 16:25:46 +00:00
10 lines
184 B
C#
10 lines
184 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Sf
|
|
{
|
|
interface IServiceObject
|
|
{
|
|
IReadOnlyDictionary<int, CommandHandler> GetCommandHandlers();
|
|
}
|
|
}
|