diff options
Diffstat (limited to 'src/client/IPlayer.hx')
| -rw-r--r-- | src/client/IPlayer.hx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/client/IPlayer.hx b/src/client/IPlayer.hx new file mode 100644 index 0000000..9f224a8 --- /dev/null +++ b/src/client/IPlayer.hx @@ -0,0 +1,12 @@ +package client; + +import Types.VideoItem; + +interface IPlayer { + function loadVideo(item:VideoItem):Void; + function removeVideo():Void; + function play():Void; + function pause():Void; + function getTime():Float; + function setTime(time:Float):Void; +} |
