Skip to content
This repository was archived by the owner on May 9, 2023. It is now read-only.

Commit cb8e947

Browse files
committed
Namespace/structure cleanup
1 parent c8899be commit cb8e947

38 files changed

+40
-242
lines changed

src/Core/SceneHandler.cs

Lines changed: 0 additions & 177 deletions
This file was deleted.

src/Core/Tests/TestClass.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Linq;
55
using System.Text;
66
using UnityEngine;
7-
using UnityExplorer.UI.IValues;
7+
using UnityExplorer.UI.CacheObject.IValues;
88
using System.Reflection;
99
using UnityExplorer.UI;
1010
#if CPP

src/UI/CacheObject/CacheKeyValuePair.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
using System.Linq;
44
using System.Text;
55
using UnityExplorer.UI.CacheObject.Views;
6-
using UnityExplorer.UI.IValues;
7-
using UnityExplorer.UI.Utility;
6+
using UnityExplorer.UI.CacheObject.IValues;
87

98
namespace UnityExplorer.UI.CacheObject
109
{

src/UI/CacheObject/CacheListEntry.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Linq;
44
using System.Text;
55
using UnityExplorer.UI.CacheObject.Views;
6-
using UnityExplorer.UI.IValues;
6+
using UnityExplorer.UI.CacheObject.IValues;
77

88
namespace UnityExplorer.UI.CacheObject
99
{

src/UI/CacheObject/CacheMember.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
using UnityExplorer.Core.Runtime;
88
using UnityExplorer.UI.CacheObject.Views;
99
using UnityExplorer.UI.Inspectors;
10-
using UnityExplorer.UI.ObjectPool;
11-
using UnityExplorer.UI.Utility;
10+
using UnityExplorer.UI.Models;
1211

1312
namespace UnityExplorer.UI.CacheObject
1413
{

src/UI/CacheObject/CacheObjectBase.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@
88
using UnityEngine.UI;
99
using UnityExplorer.Core.Runtime;
1010
using UnityExplorer.UI.CacheObject.Views;
11-
using UnityExplorer.UI.IValues;
12-
using UnityExplorer.UI.ObjectPool;
13-
using UnityExplorer.UI.Utility;
11+
using UnityExplorer.UI.CacheObject.IValues;
12+
using UnityExplorer.UI.Models;
1413

1514
namespace UnityExplorer.UI.CacheObject
1615
{

src/UI/IValues/InteractiveColor.cs renamed to src/UI/CacheObject/IValues/InteractiveColor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using UnityEngine.UI;
77
using UnityExplorer.UI.CacheObject;
88

9-
namespace UnityExplorer.UI.IValues
9+
namespace UnityExplorer.UI.CacheObject.IValues
1010
{
1111
public class InteractiveColor : InteractiveValue
1212
{

src/UI/IValues/InteractiveDictionary.cs renamed to src/UI/CacheObject/IValues/InteractiveDictionary.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
using UnityExplorer.UI.CacheObject.Views;
1010
using UnityExplorer.UI.Inspectors;
1111
using UnityExplorer.UI.Panels;
12-
using UnityExplorer.UI.Utility;
1312
using UnityExplorer.UI.Widgets;
1413

15-
namespace UnityExplorer.UI.IValues
14+
namespace UnityExplorer.UI.CacheObject.IValues
1615
{
1716
public class InteractiveDictionary : InteractiveValue, ICellPoolDataSource<CacheKeyValuePairCell>, ICacheObjectController
1817
{

src/UI/IValues/InteractiveEnum.cs renamed to src/UI/CacheObject/IValues/InteractiveEnum.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using UnityEngine.UI;
88
using UnityExplorer.UI.CacheObject;
99

10-
namespace UnityExplorer.UI.IValues
10+
namespace UnityExplorer.UI.CacheObject.IValues
1111
{
1212
public class InteractiveEnum : InteractiveValue
1313
{

src/UI/IValues/InteractiveList.cs renamed to src/UI/CacheObject/IValues/InteractiveList.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
using UnityExplorer.UI.CacheObject.Views;
1010
using UnityExplorer.UI.Inspectors;
1111
using UnityExplorer.UI.Panels;
12-
using UnityExplorer.UI.Utility;
1312
using UnityExplorer.UI.Widgets;
1413

15-
namespace UnityExplorer.UI.IValues
14+
namespace UnityExplorer.UI.CacheObject.IValues
1615
{
1716
public class InteractiveList : InteractiveValue, ICellPoolDataSource<CacheListEntryCell>, ICacheObjectController
1817
{

0 commit comments

Comments
 (0)