static void CreateWindow() { // Get existing open window or if none, make a new one: PythonInterpreterWindow window = (PythonInterpreterWindow)EditorWindow.GetWindow(typeof(PythonInterpreterWindow)); window.titleContent = new GUIContent("Python"); window.InitializeWindow(); }
public PythonCommandListenerThread(int port, PythonInterpreterWindow targetWindow) { m_port = port; m_targetWindow = targetWindow; }