public void Draw(Coordinates coords, GameScreenColor color, char symbol)
        {
            var oldColor = Console.ForegroundColor;

            Console.ForegroundColor = (ConsoleColor)((int)color);

            Console.SetCursorPosition(coords.X, coords.Y);
            Console.Write(symbol);

            Console.ForegroundColor = oldColor;
        }
 // TODO
 public void Draw(Coordinates coords, GameScreenColor color, char symbol)
 {
     throw new NotImplementedException();
 }