mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-19 04:00:54 +00:00
13 lines
228 B
Objective-C
13 lines
228 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@protocol TGPasscodeBackground <NSObject>
|
|
|
|
- (instancetype)initWithSize:(CGSize)size;
|
|
|
|
- (CGSize)size;
|
|
- (UIImage *)backgroundImage;
|
|
- (UIImage *)foregroundImage;
|
|
|
|
@end
|