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 char ToChar() { throw new NotImplementedException(); } } }