16 lines
384 B
C#
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));
|
|
}
|
|
}
|
|
}
|