ME3Explorer.KFreonTPFTools3.GetSelectedTex C# (CSharp) Метод

GetSelectedTex() приватный Метод

private GetSelectedTex ( TPFTexInfo &tex ) : int
tex KFreonLib.Textures.TPFTexInfo
Результат int
        private int GetSelectedTex(out TPFTexInfo tex)
        {
            tex = null;
            // Heff: Cancellation check
            if (cts.IsCancellationRequested)
                return -1;

            myTreeNode node = MainTreeView.SelectedNode as myTreeNode;
            if (node == null)
                return -1;

            return GetTexFromNode(node, out tex);
        }
KFreonTPFTools3