I have this function in gamescene.swift:
func pauseGame() {
scene!.view!.paused = true
println("pause")
updateScoreTimer.invalidate()
}
Now I want to call it from the AppDelegate.swift but I don't know what to insert into "<#GameScene#>"
GameScene.pauseGame(<#GameScene#>)