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.
add damage tab to debug window, fix treeview
- fixed the Cards tabs treeview so it saves the expanded collapsed state - add a damage tab to the debug window, to show the board damage info
- Loading branch information
Andrew Burnett
committed
Oct 28, 2015
1 parent
3142306
commit 7b2e724
Showing
5 changed files
with
104 additions
and
10 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using System.Collections.Generic; | ||
using Hearthstone_Deck_Tracker.Hearthstone; | ||
|
||
namespace Hearthstone_Deck_Tracker.Utility | ||
{ | ||
public class BoardState | ||
{ | ||
public PlayerBoard Player { get; private set; } | ||
public PlayerBoard Opponent { get; private set; } | ||
|
||
public BoardState() | ||
{ | ||
} | ||
} | ||
|
||
public class PlayerBoard | ||
{ | ||
public int Damage { get; set; } | ||
public List<CardEntity> Cards { get; set; } | ||
} | ||
} |
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