AlicizaX/Client/Packages/com.alicizax.unity.timer/Editor/TimerComponentInspector.cs
陈思海 eb38f67131 init
2025-01-23 19:06:48 +08:00

16 lines
384 B
C#

using AlicizaX.Editor;
using AlicizaX.Timer.Runtime;
using UnityEditor;
namespace AlicizaX.Timer.Editor
{
[CustomEditor(typeof(TimerComponent))]
internal sealed class TimerComponentInspector : ComponentTypeComponentInspector
{
protected override void RefreshTypeNames()
{
RefreshComponentTypeNames(typeof(ITimerManager));
}
}
}