mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 16:34:41 +01:00
23 lines
479 B
C#
23 lines
479 B
C#
using System.Collections.Generic;
|
|
using FullInspector;
|
|
using UnityEngine;
|
|
|
|
namespace MoleMole
|
|
{
|
|
[fiInspectorOnly]
|
|
public class MonoEditorUIContextInspector : MonoBehaviour
|
|
{
|
|
[InspectorCollapsedFoldout]
|
|
public List<BasePageContext> pageContextStack = new List<BasePageContext>();
|
|
|
|
[InspectorCollapsedFoldout]
|
|
public ViewCache pageCache;
|
|
|
|
[InspectorCollapsedFoldout]
|
|
public ViewCache diaglogCache;
|
|
|
|
[InspectorCollapsedFoldout]
|
|
public ViewCache widgetCache;
|
|
}
|
|
}
|