Skip to content

Commit

Permalink
[splendo#13] Added Enum for filterBar
Browse files Browse the repository at this point in the history
  • Loading branch information
corrado4eyes committed Dec 6, 2019
1 parent 72ae392 commit cb13d86
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
19 changes: 19 additions & 0 deletions hearthstone/src/model/cardSet.ts
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"
}
7 changes: 7 additions & 0 deletions hearthstone/src/model/rarity.ts
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"
}

0 comments on commit cb13d86

Please sign in to comment.