Skip to content
This repository was archived by the owner on Dec 1, 2022. It is now read-only.

Commit 7a8b286

Browse files
authored
Merge pull request #300 from Frannsoft/young-link
young link now supported in Ultimate
2 parents 75d174d + 0a882e8 commit 7a8b286

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

src/Contracts/FrannHammer.WebScraping.Domain.Contracts/CharacterIds.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ public static class CharacterIds
8484
public const int BanjoKazooie = 76;
8585
public const int IceClimbers = 77;
8686
public const int Terry = 78;
87+
public const int YoungLink = 79;
8788

8889
public static int FindByName(string characterName)
8990
{

src/Implementation/FrannHammer.WebScraping.Domain/Characters.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ public static class Characters
102102
new Hero(),
103103
new BanjoKazooie(),
104104
new IceClimbers(),
105-
new Terry()
105+
new Terry(),
106+
new YoungLink()
106107
};
107108
}
108109
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using FrannHammer.WebScraping.Domain.Contracts;
2+
3+
namespace FrannHammer.WebScraping.Domain
4+
{
5+
public class YoungLink : WebCharacter
6+
{
7+
public YoungLink()
8+
: base("YoungLink", "Young%20Link")
9+
{
10+
DisplayName = "Young Link";
11+
CssKey = "yink";
12+
}
13+
}
14+
}

0 commit comments

Comments
 (0)