using System; using System.Collections.Generic; using System.Text; namespace CoopSweeper.GameTypes { enum FieldState { NONE, REVEALED, QUESTIONMARK, FLAG } public interface IField { } }