mirror of
http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite.git
synced 2025-11-20 06:47:14 +08:00
Co-authored-by: m0_75251201 <m0_75251201@noreply.gitcode.com> Reviewed-on: http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite/pulls/60
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();
|
|
}
|
|
}
|
|
} |