using System; using System.Collections.Generic; using System.Text; namespace CoopSweeper.GameTypes { public enum FieldState { NONE, REVEALED, QUESTIONMARK, FLAG } public interface IField { bool ContainsBomb { get; set; } FieldState State { get; set; } char ToChar(); } }