






#import "PubTapEarEqualWindow.h"

@implementation PubTapEarEqualWindow

- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
    UIView *view = [super hitTest:point withEvent:event];
    return (view == self || view == self.rootViewController.view) ? nil : view;
}

@end
