Swiftgram/submodules/LegacyComponents/Sources/TGOverlayFormsheetWindow.h
2020-02-22 15:38:54 +04:00

15 lines
450 B
Objective-C

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