mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 03:20:09 +00:00
10 lines
371 B
Objective-C
10 lines
371 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 buffering:(bool)buffering;
|
|
|
|
@end
|