Skip to content

Commit eea5dd6

Browse files
committed
Downloader is a RedumpTool class
1 parent 3381f5b commit eea5dd6

6 files changed

Lines changed: 18 additions & 19 deletions

File tree

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
using System.Collections.Generic;
22
using System.Threading.Tasks;
3-
using SabreTools.RedumpLib.Data;
43
using SabreTools.RedumpLib.Web;
54

6-
namespace SabreTools.RedumpLib
5+
namespace RedumpTool
76
{
87
/// <summary>
98
/// Contains logic for dealing with downloads

RedumpTool/Enumerations.cs

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
namespace RedumpTool
2+
{
3+
/// <summary>
4+
/// Determines what download type to initate
5+
/// </summary>
6+
public enum Feature
7+
{
8+
NONE,
9+
Site,
10+
WIP,
11+
Packs,
12+
User,
13+
Quicksearch,
14+
}
15+
}

RedumpTool/Program.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
using System;
22
using System.IO;
3-
using SabreTools.RedumpLib;
4-
using SabreTools.RedumpLib.Data;
53

64
namespace RedumpTool
75
{

SabreTools.RedumpLib/Data/Enumerations.cs

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -122,19 +122,6 @@ public enum DumpStatus
122122
TwoOrMoreGreen = 5,
123123
}
124124

125-
/// <summary>
126-
/// Determines what download type to initate
127-
/// </summary>
128-
public enum Feature
129-
{
130-
NONE,
131-
Site,
132-
WIP,
133-
Packs,
134-
User,
135-
Quicksearch,
136-
}
137-
138125
/// <summary>
139126
/// List of all disc langauges
140127
/// </summary>

SabreTools.RedumpLib/Web/Packs.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace SabreTools.RedumpLib.Web
77
/// <summary>
88
/// Contains logic for dealing with packs
99
/// </summary>
10-
internal static class Packs
10+
public static class Packs
1111
{
1212
/// <summary>
1313
/// Download premade packs

SabreTools.RedumpLib/Web/Search.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace SabreTools.RedumpLib.Web
88
/// <summary>
99
/// Contains logic for dealing with searches
1010
/// </summary>
11-
internal static class Search
11+
public static class Search
1212
{
1313
/// <summary>
1414
/// List the disc IDs associated with a given quicksearch query

0 commit comments

Comments
 (0)