diff options
| author | RblSb <msrblsb@gmail.com> | 2020-06-07 18:45:22 +0300 |
|---|---|---|
| committer | RblSb <msrblsb@gmail.com> | 2020-06-07 18:45:22 +0300 |
| commit | d31f0b30481f6180e7907aee27413e5d208539aa (patch) | |
| tree | ad1281ef9f5100bd05108dc42b8f5107f585444a /src/client/IPlayer.hx | |
| parent | f2567959538d7a7b26aa405353c2dbea4e6cc945 (diff) | |
Playlists "at next" order
Diffstat (limited to 'src/client/IPlayer.hx')
| -rw-r--r-- | src/client/IPlayer.hx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/IPlayer.hx b/src/client/IPlayer.hx index 4cdcb0b..7f626b1 100644 --- a/src/client/IPlayer.hx +++ b/src/client/IPlayer.hx @@ -1,11 +1,12 @@ package client; +import Types.VideoDataRequest; import Types.VideoData; import Types.VideoItem; interface IPlayer { function isSupportedLink(url:String):Bool; - function getVideoData(url:String, callback:(data:VideoData)->Void):Void; + function getVideoData(data:VideoDataRequest, callback:(data:VideoData)->Void):Void; function loadVideo(item:VideoItem):Void; function removeVideo():Void; function isVideoLoaded():Bool; |
