//
//  XXGTransparentWindow.m
//  XXGPlayKit
//
//  Created by apple on 2025/4/10.
//

#import "XXGTransparentWindow.h"

@implementation XXGTransparentWindow

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

@end
