wabbajack/Wabbajack.Lib/Downloaders/UrlDownloaders/BethesdaNetInferencer.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

14 lines
315 B
C#

using System;
using System.Threading.Tasks;
namespace Wabbajack.Lib.Downloaders.UrlDownloaders
{
public class BethesdaNetInferencer : IUrlInferencer
{
public async Task<AbstractDownloadState> Infer(Uri uri)
{
return BethesdaNetDownloader.StateFromUrl(uri);
}
}
}