From 2df58aeacbf1177ec01167bdeccfe89d6a8d5804 Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期三, 13 二月 2019 14:20:28 +0800
Subject: [PATCH] 3335 配置表读取重构,修改配置表读取接口1

---
 System/Message/SysNotifyMgr.cs |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/System/Message/SysNotifyMgr.cs b/System/Message/SysNotifyMgr.cs
index 2a569c0..b8ecf16 100644
--- a/System/Message/SysNotifyMgr.cs
+++ b/System/Message/SysNotifyMgr.cs
@@ -103,7 +103,7 @@
     void GetSysMsg(string key)
     {
         ///鏍规嵁key浠庣郴缁熶俊鎭〃鍙栧埌娑堟伅绫诲瀷
-        SysInfoConfig cfg = Config.Instance.Get<SysInfoConfig>(key);
+        SysInfoConfig cfg = SysInfoConfig.Get(key);
         if (cfg == null)
         {
 #if UNITY_EDITOR
@@ -149,7 +149,7 @@
 
     public void ShowTip(string key, params object[] msg)
     {
-        SysInfoConfig cfg = Config.Instance.Get<SysInfoConfig>(key);
+        SysInfoConfig cfg = SysInfoConfig.Get(key);
         if (cfg != null)
         {
             tipInfoList.Clear();

--
Gitblit v1.8.0