2025-02-09 23:47:42 -05:00
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace Ichni.Editor
|
|
|
|
|
{
|
|
|
|
|
public class EditorUIManager : MonoBehaviour
|
|
|
|
|
{
|
2025-02-16 11:15:42 -05:00
|
|
|
public MainPage mainPage;
|
2025-02-09 23:47:42 -05:00
|
|
|
public Hierarchy hierarchy;
|
2025-02-11 22:58:56 -05:00
|
|
|
public Inspector inspector;
|
2025-02-14 22:04:21 -05:00
|
|
|
public Timeline timeline;
|
2025-02-09 23:47:42 -05:00
|
|
|
}
|
|
|
|
|
}
|