Enum parse support, start work on CSConsole, cleanup

This commit is contained in:
Sinai
2021-05-09 20:18:33 +10:00
parent 7b700cbe55
commit e6b253fed9
30 changed files with 1616 additions and 213 deletions

View File

@ -9,15 +9,16 @@ using UnityEngine.SceneManagement;
using UnityEngine.UI;
using UnityExplorer.Core;
using UnityExplorer.UI.Models;
using UnityExplorer.UI.Panels;
using UnityExplorer.UI.Widgets;
namespace UnityExplorer.UI.Panels
namespace UnityExplorer.UI.ObjectExplorer
{
public class SceneExplorer : UIModel
{
public ObjectExplorer Parent { get; }
public ObjectExplorerPanel Parent { get; }
public SceneExplorer(ObjectExplorer parent)
public SceneExplorer(ObjectExplorerPanel parent)
{
Parent = parent;