ME3Explorer.KFreonTPFTools3.CheckTree C# (CSharp) Method

CheckTree() private method

private CheckTree ( ) : bool
return bool
        private bool CheckTree()
        {
            // KFreon: If no tree, try again
            if (Tree == null || Tree.TexCount == 0)
                if (!LoadTrees())
                {
                    MessageBox.Show("No ME" + WhichGame + " Tree found! Use Texplorer to generate one.", "Lets not get ahead of ourselves", MessageBoxButtons.OK, MessageBoxIcon.Error);
                    return false;
                }
            return true;
        }
KFreonTPFTools3