9 lines
246 B
C#
9 lines
246 B
C#
|
namespace Managers
|
||
|
{
|
||
|
public interface ILaunchManager
|
||
|
{
|
||
|
string StepDescription { get; } // 获取当前加载步骤的描述
|
||
|
void Init(); // 初始化管理器
|
||
|
void Clear(); // 清理管理器,用于重载
|
||
|
}
|
||
|
}
|