mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2026-01-09 20:24: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();
|
|
}
|
|
}
|