internal AbstractWindow(bool useWindowList = true)
        {
            this.useWindowList = useWindowList;

            if (useWindowList) {
                WindowList.Instance.add(this);
            }

            editorLock = new EditorLock("Toolbar_window_" + id);
        }
示例#2
0
        internal AbstractWindow(bool useWindowList = true)
        {
            this.useWindowList = useWindowList;

            if (useWindowList)
            {
                WindowList.Instance.add(this);
            }

            editorLock = new EditorLock("Toolbar_window_" + id);
        }
示例#3
0
        internal AbstractWindow()
        {
            WindowList.Instance.add(this);

            editorLock = new EditorLock("Toolbar_window_" + id);
        }