mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
a1e911669a
* Can download audio tracks from Youtube, re-encoding to XWM in the process
11 lines
203 B
C#
11 lines
203 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Wabbajack.Lib.Downloaders.UrlDownloaders
|
|
{
|
|
public interface IUrlInferencer
|
|
{
|
|
Task<AbstractDownloadState> Infer(Uri uri);
|
|
}
|
|
}
|