forked from splendo/HeartstoneAssessment
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[splendo#13] Added Enum for filterBar
- Loading branch information
1 parent
72ae392
commit cb13d86
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
export enum CardSet { | ||
Basic = "Basic", | ||
Classic = "Classic", | ||
HallOfFame = "Hall of Fame", | ||
Naxxramas = "Naxxramas", | ||
Goblins_vs_Gnomes = "Goblins vs Gnomes", | ||
Blackrock_Mountain = "Blackrock Mountain", | ||
The_Grand_Tournament = "The Grand Tournament", | ||
The_League_of_Explorers = "The League of Explorers", | ||
Whispers_of_the_Old_Gods = "Whispers of the Old Gods", | ||
One_Night_in_Karazhan = "One Night in Karazhan", | ||
Mean_Streets_of_Gadgetzan = "Mean Streets of Gadgetzan", | ||
Journey_to_UnGoro = "Journey to Un'Goro", | ||
Tavern_Brawl = "Tavern Brawl", | ||
Hero_Skins = "Hero Skins", | ||
Missions = "Missions", | ||
Credits = "Credits", | ||
Debug = "Debug" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export enum Rarity { | ||
Free = "Free", | ||
Common = "Common", | ||
Legendary = "Legendary", | ||
Epic = "Epic", | ||
Rare = "Rare" | ||
} |