NLDClient-yudde/ProjectNLD/Assets/Editor/FightDebug/ISubDebugPanel.cs

10 lines
163 B
C#

namespace FightDebug
{
public interface ISubDebugPanel
{
bool isFold { get; set; }
string title { get; }
void DrawUI();
}
}