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

10 lines
163 B
C#
Raw Normal View History

2025-05-07 14:28:05 +08:00
namespace FightDebug
{
public interface ISubDebugPanel
{
bool isFold { get; set; }
string title { get; }
void DrawUI();
}
}