home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / mx / managers / IHistoryManager.as < prev    next >
Encoding:
Text File  |  2010-06-23  |  453 b   |  21 lines

  1. package mx.managers
  2. {
  3.    public interface IHistoryManager
  4.    {
  5.       function registered() : void;
  6.       
  7.       function register(param1:IHistoryManagerClient) : void;
  8.       
  9.       function registerHandshake() : void;
  10.       
  11.       function load(param1:Object) : void;
  12.       
  13.       function loadInitialState() : void;
  14.       
  15.       function unregister(param1:IHistoryManagerClient) : void;
  16.       
  17.       function save() : void;
  18.    }
  19. }
  20.  
  21.