mirror of
http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite.git
synced 2025-11-20 09:47:13 +08:00
20 lines
456 B
C#
20 lines
456 B
C#
|
|
using System.Threading.Tasks;
|
||
|
|
using Utils;
|
||
|
|
|
||
|
|
namespace Managers
|
||
|
|
{
|
||
|
|
public class RobotLogicManager:Singleton<RobotLogicManager>,ILaunchManager
|
||
|
|
{
|
||
|
|
public bool Completed { get; set; }
|
||
|
|
public string StepDescription { get; }
|
||
|
|
public Task Init()
|
||
|
|
{
|
||
|
|
throw new System.NotImplementedException();
|
||
|
|
}
|
||
|
|
|
||
|
|
public void Clear()
|
||
|
|
{
|
||
|
|
throw new System.NotImplementedException();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|