Created DeadlyStreamDownloader

This commit is contained in:
erri120 2020-01-06 16:08:21 +01:00
parent b8a6db5211
commit 91cfe359a8
No known key found for this signature in database
GPG Key ID: A8C0A18D8D4D3135
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,24 @@
using System;
namespace Wabbajack.Lib.Downloaders
{
public class DeadlyStreamDownloader : AbstractIPS4Downloader<DeadlyStreamDownloader, DeadlyStreamDownloader.State>
{
#region INeedsDownload
public override string SiteName => "Deadly Stream";
public override Uri SiteURL => new Uri("https://www.deadlystream.com");
public override Uri IconUri => new Uri("https://www.deadlystream.com/favicon.ico");
#endregion
public DeadlyStreamDownloader() : base(new Uri("https://deadlystream.com/login"), "deadlystream",
"deadlystream.com")
{
}
public class State : State<DeadlyStreamDownloader>
{
}
}
}

View File

@ -125,6 +125,7 @@
<Compile Include="CompilationSteps\Serialization.cs" />
<Compile Include="Downloaders\AbstractIPS4Downloader.cs" />
<Compile Include="Downloaders\AbstractNeedsLoginDownloader.cs" />
<Compile Include="Downloaders\DeadlyStreamDownloader.cs" />
<Compile Include="Downloaders\GameFileSourceDownloader.cs" />
<Compile Include="Downloaders\INeedsLogin.cs" />
<Compile Include="Downloaders\LoversLabDownloader.cs" />