Swiftgram/LegacyComponents/TGPasscodeBackground.h
2017-07-28 16:50:06 +03:00

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