mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-23 00:52:31 +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) { }
|
|
}
|
|
}
|