10 lines
163 B
C#
10 lines
163 B
C#
|
|
namespace FightDebug
|
|||
|
|
{
|
|||
|
|
public interface ISubDebugPanel
|
|||
|
|
{
|
|||
|
|
bool isFold { get; set; }
|
|||
|
|
string title { get; }
|
|||
|
|
void DrawUI();
|
|||
|
|
}
|
|||
|
|
}
|