home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Puzzle / filler.swf / scripts / mx / states / IOverride.as next >
Encoding:
Text File  |  2008-09-02  |  276 b   |  16 lines

  1. package mx.states
  2. {
  3.    import mx.core.UIComponent;
  4.    
  5.    public interface IOverride
  6.    {
  7.        
  8.       
  9.       function initialize() : void;
  10.       
  11.       function remove(param1:UIComponent) : void;
  12.       
  13.       function apply(param1:UIComponent) : void;
  14.    }
  15. }
  16.