Merge changes

This commit is contained in:
Marvin Rohrbach
2018-05-25 11:26:27 +02:00
4 changed files with 79 additions and 23 deletions

View File

@@ -10,12 +10,16 @@ namespace CoopSweeper.GameTypes
public Field()
{
State = FieldState.NONE;
CheckID = 0;
}
public bool ContainsBomb { get; set; }
public FieldState State { get; set; }
public int SurroundingBombs { get; set; }
public int CheckID { get; set; }
public DisplayState GetDisplayState()
{
switch(State)