26 lines
488 B
C#
26 lines
488 B
C#
using UnityEngine;
|
|
|
|
namespace MeowmentDebugTool
|
|
{
|
|
/// <summary>
|
|
/// 调试模块接口
|
|
/// </summary>
|
|
public interface IDebugModule
|
|
{
|
|
/// <summary>
|
|
/// 初始化模块
|
|
/// </summary>
|
|
void Initialize();
|
|
|
|
/// <summary>
|
|
/// 获取模块页面
|
|
/// </summary>
|
|
GameObject GetPage();
|
|
|
|
/// <summary>
|
|
/// 模块名称
|
|
/// </summary>
|
|
string GetModuleName();
|
|
}
|
|
}
|