Files
2018-12-16 11:47:26 +01:00

16 lines
264 B
C#

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);
}
}