mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-23 22:12:43 +00:00
14 lines
512 B
Objective-C
14 lines
512 B
Objective-C
#import <LegacyComponents/TGWallpaperInfo.h>
|
|
|
|
@interface TGBuiltinWallpaperInfo : TGWallpaperInfo
|
|
|
|
- (instancetype)initWithBuiltinId:(int)builtinId;
|
|
- (instancetype)initWithBuiltinId:(int)builtinId tintColor:(int)tintColor systemAlpha:(CGFloat)systemAlpha buttonsAlpha:(CGFloat)buttonsAlpha highlightedButtonAlpha:(CGFloat)highlightedButtonAlpha progressAlpha:(CGFloat)progressAlpha version:(int32_t)version;
|
|
|
|
- (BOOL)isDefault;
|
|
- (int32_t)version;
|
|
|
|
@end
|
|
|
|
extern const int32_t TGBuilitinWallpaperCurrentVersion;
|