mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-16 22:27:45 +08:00
33 lines
786 B
C#
33 lines
786 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace UnityExplorer.UI.Inspectors
|
|||
|
{
|
|||
|
public class InstanceInspector : ReflectionInspector { }
|
|||
|
|
|||
|
public class StaticInspector : ReflectionInspector { }
|
|||
|
|
|||
|
public class ReflectionInspector : InspectorBase
|
|||
|
{
|
|||
|
public override GameObject UIRoot => throw new NotImplementedException();
|
|||
|
|
|||
|
public override GameObject CreateContent(GameObject content)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public override void Update()
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
protected override void OnCloseClicked()
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|