wabbajack/Wabbajack.Lib/Downloaders/UrlDownloaders/IUrlInferencer.cs
Timothy Baldridge a1e911669a
Youtube Downloader (#596)
* Can download audio tracks from Youtube, re-encoding to XWM in the process
2020-03-03 14:53:29 -07:00

11 lines
203 B
C#

using System;
using System.Threading.Tasks;
namespace Wabbajack.Lib.Downloaders.UrlDownloaders
{
public interface IUrlInferencer
{
Task<AbstractDownloadState> Infer(Uri uri);
}
}