ME3Explorer.PackageEditor.Interpreter C# (CSharp) Method

Interpreter() public method

public Interpreter ( ) : void
return void
        public void Interpreter()
        {
            int n;
            if (pcc == null || !GetSelected(out n) || n < 0)
            {
                return;
            }
            InterpreterHost ip = new InterpreterHost(pcc.FileName, n);
            ip.Text = "Interpreter (Package Editor)";
            ip.MdiParent = this.MdiParent;
            ip.Show();
        }
PackageEditor