From d7b690ed51305bbd98bae30a8e206e4b672a2dd3 Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期二, 21 八月 2018 21:37:26 +0800
Subject: [PATCH] 前端代码整理

---
 Assets/Editor/ScriptEditor/NewBieGuideEditorWindow.cs |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Assets/Editor/ScriptEditor/NewBieGuideEditorWindow.cs b/Assets/Editor/ScriptEditor/NewBieGuideEditorWindow.cs
index 3b84134..c7d1308 100644
--- a/Assets/Editor/ScriptEditor/NewBieGuideEditorWindow.cs
+++ b/Assets/Editor/ScriptEditor/NewBieGuideEditorWindow.cs
@@ -451,10 +451,10 @@
 
     void DrawNewbieGuides()
     {
-        if (ConfigManager.Instance.inited && newbieGuides == null)
+        if (Config.Instance.inited && newbieGuides == null)
         {
             newbieGuides = new List<NewBieGuide>();
-            var guides = ConfigManager.Instance.GetAllValues<GuideConfig>();
+            var guides = Config.Instance.GetAllValues<GuideConfig>();
             foreach (var config in guides)
             {
                 if (config.Type == 1)
@@ -507,10 +507,10 @@
 
     void DrawFunctionalGuides()
     {
-        if (ConfigManager.Instance.inited && functionalGuides == null)
+        if (Config.Instance.inited && functionalGuides == null)
         {
             functionalGuides = new List<FunctionalGuide>();
-            var guides = ConfigManager.Instance.GetAllValues<GuideConfig>();
+            var guides = Config.Instance.GetAllValues<GuideConfig>();
             foreach (var config in guides)
             {
                 if (config.Type == 2)

--
Gitblit v1.8.0