////////////Template code //////////// Chunk 1 GameStart.m -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { } -(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event { } -(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event { /* Called when a touch begins */ if(touches){ SKView * skView = (SKView *)self.view; // Create and configure the scene. GameScene *scene = [GameScene nodeWithFileNamed:@"GameScene"]; scene.scaleMode = SKSceneScaleModeAspectFill; // Present the scene. [skView presentScene:scene]; } } -(void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event { }