0
0
mirror of https://github.com/sp-tarkov/launcher.git synced 2025-02-13 06:50:43 -05:00
launcher/project/SPT.Launcher.Base/Interfaces/IGameStarterFrontend.cs

11 lines
264 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
using SPT.Launcher.Models.Launcher;
namespace SPT.Launcher.Interfaces
{
public interface IGameStarterFrontend
{
Task CompletePatchTask(IAsyncEnumerable<PatchResultInfo> task);
}
}