From f7dc33c89b3b90a8cbc5999062519e58a5b8fa19 Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期三, 26 九月 2018 19:33:05 +0800
Subject: [PATCH] 3335 修理窗口管理api

---
 System/WindowBase/WindowCenter.cs |   14 ++------------
 1 files changed, 2 insertions(+), 12 deletions(-)

diff --git a/System/WindowBase/WindowCenter.cs b/System/WindowBase/WindowCenter.cs
index 33a4290..8e82a90 100644
--- a/System/WindowBase/WindowCenter.cs
+++ b/System/WindowBase/WindowCenter.cs
@@ -411,7 +411,7 @@
             }
         }
 
-        public bool CheckOpen<T>() where T : Window
+        public bool IsOpen<T>() where T : Window
         {
             T win = null;
             if (TryGetWindow(out win))
@@ -427,7 +427,7 @@
             }
         }
 
-        public bool CheckOpen(string _windowName)
+        public bool IsOpen(string _windowName)
         {
             if (windows.ContainsKey(_windowName) && windows[_windowName] != null)
             {
@@ -438,16 +438,6 @@
             {
                 return false;
             }
-        }
-
-        public void PreCreateWindows()
-        {
-            m_PreCreateWindowNum = 0;
-        }
-
-        private void AsyncLoadWindowCallBack(bool _ok, UnityEngine.Object _object)
-        {
-            m_PreCreateWindowNum--;
         }
 
         public bool ExitAnyFullScreenOrMaskWin()

--
Gitblit v1.8.0