mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-19 12:10:55 +00:00
10 lines
345 B
Objective-C
10 lines
345 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "TGPIPAblePlayerView.h"
|
|
|
|
@interface TGEmbedPlayerState : NSObject <TGPIPAblePlayerState>
|
|
|
|
+ (instancetype)stateWithPlaying:(bool)playing;
|
|
+ (instancetype)stateWithPlaying:(bool)playing duration:(NSTimeInterval)duration position:(NSTimeInterval)position downloadProgress:(CGFloat)downloadProgress;
|
|
|
|
@end
|