mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
15 lines
463 B
Objective-C
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
|