mirror of
http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite.git
synced 2025-11-20 03:47:13 +08:00
9 lines
246 B
C#
9 lines
246 B
C#
|
|
namespace Managers
|
||
|
|
{
|
||
|
|
public interface ILaunchManager
|
||
|
|
{
|
||
|
|
string StepDescription { get; } // 获取当前加载步骤的描述
|
||
|
|
void Init(); // 初始化管理器
|
||
|
|
void Clear(); // 清理管理器,用于重载
|
||
|
|
}
|
||
|
|
}
|