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