mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-14 23:56:36 +08:00
15 lines
358 B
C#
15 lines
358 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace UnityExplorer.UI.Inspectors.Reflection
|
|||
|
{
|
|||
|
public class StaticInspector : ReflectionInspector
|
|||
|
{
|
|||
|
public override string TabLabel => $" <color=cyan>[S]</color> {base.TabLabel}";
|
|||
|
|
|||
|
public StaticInspector(Type type) : base(type) { }
|
|||
|
}
|
|||
|
}
|