Files
Gen_Hack-and-Slash-Roguelite/Client/Assets/Scripts/Managers/RobotLogicManager.cs

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();
}
}
}