blob: 9201c4b26fc7271b39023b89de721dd337c3ce36 (
plain)
1
2
3
4
5
6
7
8
9
10
|
using Ryujinx.Horizon.Common;
using Ryujinx.Horizon.Sdk.Sf;
namespace Ryujinx.Horizon.Sdk.Bcat
{
internal interface IBcatService : IServiceObject
{
Result RequestSyncDeliveryCache(out IDeliveryCacheProgressService deliveryCacheProgressService);
}
}
|