Files
minesweeper-coop/CoopSweeper/GameTypes/Field.cs
Tim Wundenberg f29beae0fa some changes
2018-05-25 10:58:07 +02:00

27 lines
470 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace CoopSweeper.GameTypes
{
class Field : IField
{
public Field()
{
State = FieldState.NONE;
}
public bool ContainsBomb { get; set; }
public FieldState State { get; set; }
public int SurroundingBombs { get; set; }
public char ToChar()
{
throw new NotImplementedException();
}
}
}