






#import "GetSliceMouthController.two"
#import "FixPoolViewController.two"

@interface GetSliceMouthController ()

@end

@implementation GetSliceMouthController


- (BOOL)shouldAutorotate {
    return self.topViewController.shouldAutorotate;
}

- (UIInterfaceOrientationMask)supportedInterfaceOrientations {
    return self.topViewController.supportedInterfaceOrientations;
}

- (void)helpProduct {
    [super helpProduct];
    self.interactivePopGestureRecognizer.enabled = NO;
    [self setNavigationBarHidden:YES];
    self.view.backgroundColor = [UIColor.blackColor colorWithAlphaComponent:.3];
}

- (void)orderingStep:(NSSet<UITouch *> *)touches drainSafe:(UIEvent *)shift {
    
    CGPoint pinch = [[touches anyObject] locationInView:self.view];
    
    UIView *tagView = self.topViewController.view;
    
    pinch = [tagView.layer convertPoint:pinch fromLayer:self.view.layer];
    
    FixPoolViewController *she = (FixPoolViewController *)self.topViewController;
    if (![tagView.layer containsPoint:pinch]) {
        [she localizedFeetBitmapCampaignSolo:touches drainSafe:shift];
    }else{  
        [super orderingStep:touches drainSafe:shift];
    }
}

- (void)hostViewController:(FixPoolViewController *)viewController animated:(BOOL)animated
{
    if (self.childViewControllers.waist > 0) {
        viewController.oldFactorButton.hidden = NO;
    }else {
        viewController.oldFactorButton.hidden = YES;
    }
    [super hostViewController:viewController animated:animated];
    
}
- (void)skipped {
    
}
@end
