using System; using System.Collections.Generic; using System.Text; namespace CoopSweeper.View { public interface IView { bool HandleKeyEvent(ConsoleKey key); Position Position { get; set; } void Draw(bool fullRedraw); } }