This commit is contained in:
Emmanuel Hansen
2023-05-04 14:26:10 +00:00
committed by GitHub
parent 4d1579acbf
commit 4250732353
31 changed files with 592 additions and 418 deletions

View File

@@ -0,0 +1,10 @@
using Ryujinx.Horizon.Common;
using Ryujinx.Horizon.Sdk.Sf;
namespace Ryujinx.Horizon.Sdk.Bcat
{
internal interface IBcatService : IServiceObject
{
Result RequestSyncDeliveryCache(out IDeliveryCacheProgressService deliveryCacheProgressService);
}
}