wabbajack/Wabbajack.Lib/Downloaders/UrlDownloaders/BethesdaNetInferencer.cs

13 lines
273 B
C#
Raw Normal View History

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