private Step[] steps;
public TutorialManager(JsonFile configs,double gameWidth,double gameHeight,int markNum,TaskHandler[] handlers){
this.detector=new TaskDetector(this);
this.board=new StepBoard(new Point(10,10),gameWidth/2);
this.taskCmpts=new StepComponent[2+(markNum<1?1:markNum)];
this.taskCmpts[BUTTON_INDEX]=new NextStepButton(new Point(gameWidth-130,gameHeight-60),this);
this.taskCmpts[LIST_INDEX]=new TasksList(gameWidth-185,gameHeight);
for(int i=2;i<this.taskCmpts.length;i++){