Files
UnityExplorer/src/Inspectors/Reflection/StaticInspector.cs

12 lines
283 B
C#

using System;
namespace UnityExplorer.Inspectors.Reflection
{
public class StaticInspector : ReflectionInspector
{
public override string TabLabel => $" <color=cyan>[S]</color> {base.TabLabel}";
public StaticInspector(Type type) : base(type) { }
}
}