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

11 lines
264 B
C#
Raw Permalink Normal View History

2023-03-03 19:25:33 +00:00
using System.Collections.Generic;
using System.Threading.Tasks;
2024-05-21 20:15:19 +01:00
using SPT.Launcher.Models.Launcher;
2023-03-03 19:25:33 +00:00
2024-05-21 20:15:19 +01:00
namespace SPT.Launcher.Interfaces
2023-03-03 19:25:33 +00:00
{
public interface IGameStarterFrontend
{
Task CompletePatchTask(IAsyncEnumerable<PatchResultInfo> task);
}
}