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
14 lines
315 B
C#
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);
|
|
}
|
|
}
|
|
}
|