using System; using System.Collections.Generic; using System.Text; namespace CoopSweeper.GameTypes { class Field : IField { public bool ContainsBomb { get; set; } public FieldState State { get; set;} } }