mirror of
https://github.com/sp-tarkov/launcher.git
synced 2025-02-13 08:30:44 -05:00
11 lines
264 B
C#
11 lines
264 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Aki.Launcher.Models.Launcher;
|
|
|
|
namespace Aki.Launcher.Interfaces
|
|
{
|
|
public interface IGameStarterFrontend
|
|
{
|
|
Task CompletePatchTask(IAsyncEnumerable<PatchResultInfo> task);
|
|
}
|
|
} |