source: trunk/fl5/src/com/longtailvideo/jwplayer/plugins/IPlugin.as @ 577

Revision 577, 389 bytes checked in by pablo, 3 years ago (diff)

V4 plugin compatibility positioning fix

Line 
1package com.longtailvideo.jwplayer.plugins {
2        import com.longtailvideo.jwplayer.player.IPlayer;
3
4        /**
5         * All plugins must implement the <code>IPlugin</code> interface.
6         * 
7         * @author Pablo Schklowsky
8         */
9        public interface IPlugin {
10                function initPlugin(player:IPlayer, config:PluginConfig):void;
11                function resize(width:Number, height:Number):void;
12                function get id():String;
13        }
14}
Note: See TracBrowser for help on using the repository browser.