Swiftgram/submodules/LegacyComponents/Sources/TGOverlayFormsheetWindow.h
2023-01-04 11:18:20 +04:00

15 lines
463 B
Objective-C

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <LegacyComponents/LegacyComponentsContext.h>
@class TGViewController;
@interface TGOverlayFormsheetWindow : UIWindow
- (instancetype)initWithManager:(id<LegacyComponentsOverlayWindowManager>)manager parentController:(TGViewController *)parentController contentController:(UIViewController *)contentController;
- (void)showAnimated:(bool)animated;
- (void)dismissAnimated:(bool)animated;
@end