From 7c99fb6d4c4ec0d581e842f2a9273ffdb28eba85 Mon Sep 17 00:00:00 2001 From: huyufei Date: Sat, 11 May 2024 15:01:50 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9B=B4=E6=96=B0=20Namespace=20?= =?UTF-8?q?=E9=98=B2=E6=AD=A2=E5=92=8C=E5=88=AB=E7=9A=84=E5=BA=93=E6=B7=B7?= =?UTF-8?q?=E6=B7=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: huyufei --- Runtime/GuruDebugger/Runtime/AdsStatus/AdStatus.cs | 2 +- Runtime/GuruDebugger/Runtime/AdsStatus/AdStatusConsts.cs | 2 +- Runtime/GuruDebugger/Runtime/AdsStatus/Data/AdStatusInfo.cs | 2 +- Runtime/GuruDebugger/Runtime/AdsStatus/MVP/AdStatusModel.cs | 2 +- .../Runtime/AdsStatus/MVP/AdStatusMonitorView.cs | 2 +- .../Runtime/AdsStatus/MVP/AdStatusPresenter.Ads.cs | 2 +- .../Runtime/AdsStatus/MVP/AdStatusPresenter.Factory.cs | 5 +---- .../GuruDebugger/Runtime/AdsStatus/MVP/AdStatusPresenter.cs | 2 +- Runtime/GuruDebugger/Runtime/Debugger/Core/Debugger.cs | 2 +- .../GuruDebugger/Runtime/Debugger/Core/DebuggerConsts.cs | 2 +- Runtime/GuruDebugger/Runtime/Debugger/Core/UIComponent.cs | 2 +- .../Runtime/Debugger/UI/DebuggerViewRoot.Factory.cs | 6 +++--- .../GuruDebugger/Runtime/Debugger/UI/DebuggerViewRoot.cs | 5 +++-- Runtime/GuruDebugger/Runtime/Debugger/UI/IVFactory.cs | 2 +- Runtime/GuruDebugger/Runtime/Debugger/UI/UIOptionItem.cs | 2 +- Runtime/GuruDebugger/Runtime/Debugger/UI/UITabItem.cs | 2 +- Runtime/GuruDebugger/Runtime/Debugger/UI/VButton.cs | 2 +- Runtime/GuruDebugger/Runtime/Debugger/UI/VLabel.cs | 2 +- Runtime/GuruDebugger/Samples/DebugDemo.cs | 1 - 19 files changed, 22 insertions(+), 25 deletions(-) diff --git a/Runtime/GuruDebugger/Runtime/AdsStatus/AdStatus.cs b/Runtime/GuruDebugger/Runtime/AdsStatus/AdStatus.cs index 357ab6e..320ae5b 100644 --- a/Runtime/GuruDebugger/Runtime/AdsStatus/AdStatus.cs +++ b/Runtime/GuruDebugger/Runtime/AdsStatus/AdStatus.cs @@ -1,6 +1,6 @@ -namespace Guru.Debugger +namespace Guru { using System; diff --git a/Runtime/GuruDebugger/Runtime/AdsStatus/AdStatusConsts.cs b/Runtime/GuruDebugger/Runtime/AdsStatus/AdStatusConsts.cs index c18f9df..67054da 100644 --- a/Runtime/GuruDebugger/Runtime/AdsStatus/AdStatusConsts.cs +++ b/Runtime/GuruDebugger/Runtime/AdsStatus/AdStatusConsts.cs @@ -1,4 +1,4 @@ -namespace Guru.Debugger +namespace Guru { public class AdStatusConsts { diff --git a/Runtime/GuruDebugger/Runtime/AdsStatus/Data/AdStatusInfo.cs b/Runtime/GuruDebugger/Runtime/AdsStatus/Data/AdStatusInfo.cs index 152d2d3..e7b10e1 100644 --- a/Runtime/GuruDebugger/Runtime/AdsStatus/Data/AdStatusInfo.cs +++ b/Runtime/GuruDebugger/Runtime/AdsStatus/Data/AdStatusInfo.cs @@ -1,6 +1,6 @@ -namespace Guru.Debugger +namespace Guru { using System; diff --git a/Runtime/GuruDebugger/Runtime/AdsStatus/MVP/AdStatusModel.cs b/Runtime/GuruDebugger/Runtime/AdsStatus/MVP/AdStatusModel.cs index 9062f34..d1c802b 100644 --- a/Runtime/GuruDebugger/Runtime/AdsStatus/MVP/AdStatusModel.cs +++ b/Runtime/GuruDebugger/Runtime/AdsStatus/MVP/AdStatusModel.cs @@ -1,6 +1,6 @@ using System; -namespace Guru.Debugger +namespace Guru { public class AdStatusModel { diff --git a/Runtime/GuruDebugger/Runtime/AdsStatus/MVP/AdStatusMonitorView.cs b/Runtime/GuruDebugger/Runtime/AdsStatus/MVP/AdStatusMonitorView.cs index 8d04064..8cabe0b 100644 --- a/Runtime/GuruDebugger/Runtime/AdsStatus/MVP/AdStatusMonitorView.cs +++ b/Runtime/GuruDebugger/Runtime/AdsStatus/MVP/AdStatusMonitorView.cs @@ -1,5 +1,5 @@ -namespace Guru.Debugger +namespace Guru { using System; using UnityEngine.EventSystems; diff --git a/Runtime/GuruDebugger/Runtime/AdsStatus/MVP/AdStatusPresenter.Ads.cs b/Runtime/GuruDebugger/Runtime/AdsStatus/MVP/AdStatusPresenter.Ads.cs index e90fcb3..8ae3439 100644 --- a/Runtime/GuruDebugger/Runtime/AdsStatus/MVP/AdStatusPresenter.Ads.cs +++ b/Runtime/GuruDebugger/Runtime/AdsStatus/MVP/AdStatusPresenter.Ads.cs @@ -1,6 +1,6 @@ -namespace Guru.Debugger +namespace Guru { using System; using System.Collections.Generic; diff --git a/Runtime/GuruDebugger/Runtime/AdsStatus/MVP/AdStatusPresenter.Factory.cs b/Runtime/GuruDebugger/Runtime/AdsStatus/MVP/AdStatusPresenter.Factory.cs index 31d2df8..058510e 100644 --- a/Runtime/GuruDebugger/Runtime/AdsStatus/MVP/AdStatusPresenter.Factory.cs +++ b/Runtime/GuruDebugger/Runtime/AdsStatus/MVP/AdStatusPresenter.Factory.cs @@ -1,9 +1,6 @@ -namespace Guru.Debugger +namespace Guru { using System; - - - public partial class AdStatusPresenter { diff --git a/Runtime/GuruDebugger/Runtime/AdsStatus/MVP/AdStatusPresenter.cs b/Runtime/GuruDebugger/Runtime/AdsStatus/MVP/AdStatusPresenter.cs index 4bc44a0..86fa732 100644 --- a/Runtime/GuruDebugger/Runtime/AdsStatus/MVP/AdStatusPresenter.cs +++ b/Runtime/GuruDebugger/Runtime/AdsStatus/MVP/AdStatusPresenter.cs @@ -1,6 +1,6 @@ -namespace Guru.Debugger +namespace Guru { using System; using UnityEngine; diff --git a/Runtime/GuruDebugger/Runtime/Debugger/Core/Debugger.cs b/Runtime/GuruDebugger/Runtime/Debugger/Core/Debugger.cs index 0f233b6..dcbbc4f 100644 --- a/Runtime/GuruDebugger/Runtime/Debugger/Core/Debugger.cs +++ b/Runtime/GuruDebugger/Runtime/Debugger/Core/Debugger.cs @@ -1,6 +1,6 @@ -namespace Guru.Debugger +namespace Guru { using System; using UnityEngine; diff --git a/Runtime/GuruDebugger/Runtime/Debugger/Core/DebuggerConsts.cs b/Runtime/GuruDebugger/Runtime/Debugger/Core/DebuggerConsts.cs index 5cc6920..358ca88 100644 --- a/Runtime/GuruDebugger/Runtime/Debugger/Core/DebuggerConsts.cs +++ b/Runtime/GuruDebugger/Runtime/Debugger/Core/DebuggerConsts.cs @@ -1,6 +1,6 @@ -namespace Guru.Debugger +namespace Guru { using System; using UnityEngine; diff --git a/Runtime/GuruDebugger/Runtime/Debugger/Core/UIComponent.cs b/Runtime/GuruDebugger/Runtime/Debugger/Core/UIComponent.cs index 7b9e588..d39e3b7 100644 --- a/Runtime/GuruDebugger/Runtime/Debugger/Core/UIComponent.cs +++ b/Runtime/GuruDebugger/Runtime/Debugger/Core/UIComponent.cs @@ -1,7 +1,7 @@ using System; using UnityEngine; -namespace Guru.Debugger +namespace Guru { public class UIComponent: MonoBehaviour { diff --git a/Runtime/GuruDebugger/Runtime/Debugger/UI/DebuggerViewRoot.Factory.cs b/Runtime/GuruDebugger/Runtime/Debugger/UI/DebuggerViewRoot.Factory.cs index 960f5f4..1d7c634 100644 --- a/Runtime/GuruDebugger/Runtime/Debugger/UI/DebuggerViewRoot.Factory.cs +++ b/Runtime/GuruDebugger/Runtime/Debugger/UI/DebuggerViewRoot.Factory.cs @@ -1,13 +1,13 @@ -using System.Collections.Generic; -namespace Guru.Debugger + +namespace Guru { using System; using UnityEngine; using G = GlobalVars; - + using System.Collections.Generic; public partial class DebuggerViewRoot { diff --git a/Runtime/GuruDebugger/Runtime/Debugger/UI/DebuggerViewRoot.cs b/Runtime/GuruDebugger/Runtime/Debugger/UI/DebuggerViewRoot.cs index 69356ac..7c367c7 100644 --- a/Runtime/GuruDebugger/Runtime/Debugger/UI/DebuggerViewRoot.cs +++ b/Runtime/GuruDebugger/Runtime/Debugger/UI/DebuggerViewRoot.cs @@ -1,9 +1,10 @@ -using UnityEngine.EventSystems; -namespace Guru.Debugger + +namespace Guru { + using UnityEngine.EventSystems; using UnityEngine; using UnityEngine.UI; using G = GlobalVars; diff --git a/Runtime/GuruDebugger/Runtime/Debugger/UI/IVFactory.cs b/Runtime/GuruDebugger/Runtime/Debugger/UI/IVFactory.cs index 3999354..5fa760d 100644 --- a/Runtime/GuruDebugger/Runtime/Debugger/UI/IVFactory.cs +++ b/Runtime/GuruDebugger/Runtime/Debugger/UI/IVFactory.cs @@ -1,6 +1,6 @@ -namespace Guru.Debugger +namespace Guru { using System; using UnityEngine; diff --git a/Runtime/GuruDebugger/Runtime/Debugger/UI/UIOptionItem.cs b/Runtime/GuruDebugger/Runtime/Debugger/UI/UIOptionItem.cs index 2f97a2a..0681ab8 100644 --- a/Runtime/GuruDebugger/Runtime/Debugger/UI/UIOptionItem.cs +++ b/Runtime/GuruDebugger/Runtime/Debugger/UI/UIOptionItem.cs @@ -3,7 +3,7 @@ using System; using System.Collections.Generic; -namespace Guru.Debugger +namespace Guru { using UnityEngine; using UnityEngine.UI; diff --git a/Runtime/GuruDebugger/Runtime/Debugger/UI/UITabItem.cs b/Runtime/GuruDebugger/Runtime/Debugger/UI/UITabItem.cs index 734e504..3f18a7b 100644 --- a/Runtime/GuruDebugger/Runtime/Debugger/UI/UITabItem.cs +++ b/Runtime/GuruDebugger/Runtime/Debugger/UI/UITabItem.cs @@ -1,6 +1,6 @@ -namespace Guru.Debugger +namespace Guru { using UnityEngine; using System; diff --git a/Runtime/GuruDebugger/Runtime/Debugger/UI/VButton.cs b/Runtime/GuruDebugger/Runtime/Debugger/UI/VButton.cs index a7a951a..a97f11a 100644 --- a/Runtime/GuruDebugger/Runtime/Debugger/UI/VButton.cs +++ b/Runtime/GuruDebugger/Runtime/Debugger/UI/VButton.cs @@ -1,6 +1,6 @@ -namespace Guru.Debugger +namespace Guru { using System; using UnityEngine; diff --git a/Runtime/GuruDebugger/Runtime/Debugger/UI/VLabel.cs b/Runtime/GuruDebugger/Runtime/Debugger/UI/VLabel.cs index d3b6455..2f4fde2 100644 --- a/Runtime/GuruDebugger/Runtime/Debugger/UI/VLabel.cs +++ b/Runtime/GuruDebugger/Runtime/Debugger/UI/VLabel.cs @@ -1,7 +1,7 @@ using System; -namespace Guru.Debugger +namespace Guru { using UnityEngine; using UnityEngine.UI; diff --git a/Runtime/GuruDebugger/Samples/DebugDemo.cs b/Runtime/GuruDebugger/Samples/DebugDemo.cs index 95864f1..6c2599e 100644 --- a/Runtime/GuruDebugger/Samples/DebugDemo.cs +++ b/Runtime/GuruDebugger/Samples/DebugDemo.cs @@ -1,6 +1,5 @@ using Guru; -using Guru.Debugger; using UnityEngine; public class DebugDemo : MonoBehaviour