forked from HearthSim/Hearthstone-Deck-Tracker
-
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.
- Loading branch information
Showing
23 changed files
with
493 additions
and
109 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
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 |
---|---|---|
@@ -1,20 +1,14 @@ | ||
#region | ||
|
||
using System.ComponentModel; | ||
|
||
#endregion | ||
|
||
namespace Hearthstone_Deck_Tracker.Enums | ||
{ | ||
public enum ArenaImportingBehaviour | ||
{ | ||
[Description("Auto import&save")] | ||
[LocDescription("Enum_ArenaImportingBehaviour_AutoImportSave")] | ||
AutoImportSave, | ||
|
||
[Description("Auto ask to import")] | ||
[LocDescription("Enum_ArenaImportingBehaviour_AutoAsk")] | ||
AutoAsk, | ||
|
||
[Description("Manual")] | ||
[LocDescription("Enum_ArenaImportingBehaviour_Manual")] | ||
Manual | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,26 +1,20 @@ | ||
#region | ||
|
||
using System.ComponentModel; | ||
|
||
#endregion | ||
|
||
namespace Hearthstone_Deck_Tracker.Enums | ||
{ | ||
public enum ArenaRewardPacks | ||
{ | ||
[Description("None")] | ||
[LocDescription("Enum_ArenaRewardPacks_None")] | ||
None, | ||
|
||
[Description("Classic")] | ||
[LocDescription("Enum_ArenaRewardPacks_Classic")] | ||
Classic, | ||
|
||
[Description("Goblins vs Gnomes")] | ||
[LocDescription("Enum_ArenaRewardPacks_GoblinsVsGnomes")] | ||
GoblinsVsGnomes, | ||
|
||
[Description("The Grand Tournament")] | ||
[LocDescription("Enum_ArenaRewardPacks_TheGrandTournament")] | ||
TheGrandTournament, | ||
|
||
[Description("Whispers of the Old Gods")] | ||
[LocDescription("Enum_ArenaRewardPacks_WhispersOfTheOldGods")] | ||
WhispersOfTheOldGods | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,12 +1,10 @@ | ||
using System.ComponentModel; | ||
|
||
namespace Hearthstone_Deck_Tracker.Enums | ||
{ | ||
public enum ClassColorScheme | ||
{ | ||
[Description("Classic")] | ||
[LocDescription("Enum_ClassColorScheme_Classic")] | ||
Classic, | ||
[Description("Alternative")] | ||
[LocDescription("Enum_ClassColorScheme_Alternative")] | ||
HearthStats | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,14 +1,12 @@ | ||
using System.ComponentModel; | ||
|
||
namespace Hearthstone_Deck_Tracker.Enums | ||
{ | ||
public enum DeckLayout | ||
{ | ||
[Description("Default")] | ||
[LocDescription("Enum_DeckLayout_Layout1")] | ||
Layout1, | ||
[Description("Alternative")] | ||
[LocDescription("Enum_DeckLayout_Layout2")] | ||
Layout2, | ||
[Description("Legacy")] | ||
[LocDescription("Enum_DeckLayout_Legacy")] | ||
Legacy | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,13 +1,17 @@ | ||
namespace Hearthstone_Deck_Tracker.Enums | ||
namespace Hearthstone_Deck_Tracker.Enums | ||
{ | ||
public enum DeckType | ||
{ | ||
[LocDescription("Enum_DeckType_All")] | ||
All, | ||
[LocDescription("Enum_DeckType_Arena")] | ||
Arena, | ||
[LocDescription("Enum_DeckType_Standard")] | ||
Standard, | ||
[LocDescription("Enum_DeckType_Wild")] | ||
Wild, | ||
|
||
//obsolete - to avoid breaking things when loading this from config | ||
Constructed = Wild | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,9 +1,12 @@ | ||
namespace Hearthstone_Deck_Tracker.Enums | ||
namespace Hearthstone_Deck_Tracker.Enums | ||
{ | ||
public enum DisplayMode | ||
{ | ||
[LocDescription("Enum_DisplayMode_Always")] | ||
Always, | ||
[LocDescription("Enum_DisplayMode_Auto")] | ||
Auto, | ||
[LocDescription("Enum_DisplayMode_Never")] | ||
Never | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,26 +1,20 @@ | ||
#region | ||
|
||
using System.ComponentModel; | ||
|
||
#endregion | ||
|
||
namespace Hearthstone_Deck_Tracker.Enums | ||
{ | ||
public enum DisplayedStats | ||
{ | ||
[Description("All")] | ||
[LocDescription("Enum_DisplayedStats_All")] | ||
All, | ||
|
||
[Description("Selected")] | ||
[LocDescription("Enum_DisplayedStats_Selected")] | ||
Selected, | ||
|
||
[Description("Latest")] | ||
[LocDescription("Enum_DisplayedStats_Latest")] | ||
Latest, | ||
|
||
[Description("Selected Major")] | ||
[LocDescription("Enum_DisplayedStats_SelectedMajor")] | ||
SelectedMajor, | ||
|
||
[Description("Latest Major")] | ||
[LocDescription("Enum_DisplayedStats_LatestMajor")] | ||
LatestMajor | ||
} | ||
} | ||
} |
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
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
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
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
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 |
---|---|---|
@@ -1,9 +1,12 @@ | ||
namespace Hearthstone_Deck_Tracker.Enums | ||
namespace Hearthstone_Deck_Tracker.Enums | ||
{ | ||
public enum IconStyle | ||
{ | ||
[LocDescription("Enum_IconStyle_Round")] | ||
Round, | ||
[LocDescription("Enum_IconStyle_Square")] | ||
Square, | ||
[LocDescription("Enum_IconStyle_HearthStats")] | ||
HearthStats | ||
} | ||
} | ||
} |
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
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 |
---|---|---|
@@ -1,12 +1,10 @@ | ||
using System.ComponentModel; | ||
|
||
namespace Hearthstone_Deck_Tracker.Enums | ||
{ | ||
public enum MetroTheme | ||
{ | ||
[Description("Light")] | ||
[LocDescription("Enum_MetroTheme_BaseLight")] | ||
BaseLight, | ||
[Description("Dark")] | ||
[LocDescription("Enum_MetroTheme_BaseDark")] | ||
BaseDark | ||
} | ||
} | ||
} |
Oops, something went wrong.