mirror of
https://github.com/GLEGram/GLEGram-iOS.git
synced 2026-06-08 15:23:59 +02:00
4647310322
Based on Swiftgram 12.5 (Telegram iOS 12.5). All GLEGram features ported and organized in GLEGram/ folder. Features: Ghost Mode, Saved Deleted Messages, Content Protection Bypass, Font Replacement, Fake Profile, Chat Export, Plugin System, and more. See CHANGELOG_12.5.md for full details.
26 lines
834 B
Objective-C
26 lines
834 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
#import <LegacyComponents/PSCoding.h>
|
|
|
|
#import <LegacyComponents/TGStickerPackReference.h>
|
|
|
|
@interface TGStickerMaskDescription : NSObject <PSCoding, NSCoding>
|
|
|
|
@property (nonatomic, readonly) int32_t n;
|
|
@property (nonatomic, readonly) CGPoint point;
|
|
@property (nonatomic, readonly) CGFloat zoom;
|
|
|
|
- (instancetype)initWithN:(int32_t)n point:(CGPoint)point zoom:(CGFloat)zoom;
|
|
|
|
@end
|
|
|
|
@interface TGDocumentAttributeSticker : NSObject <PSCoding, NSCoding>
|
|
|
|
@property (nonatomic, strong, readonly) NSString *alt;
|
|
@property (nonatomic, strong, readonly) id<TGStickerPackReference> packReference;
|
|
@property (nonatomic, strong, readonly) TGStickerMaskDescription *mask;
|
|
|
|
- (instancetype)initWithAlt:(NSString *)alt packReference:(id<TGStickerPackReference>)packReference mask:(TGStickerMaskDescription *)mask;
|
|
|
|
@end
|