home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / com / althea / client / shufflr / controller / ApplicationStartupCommand.as < prev    next >
Encoding:
Text File  |  2010-06-23  |  469 b   |  20 lines

  1. package com.althea.client.shufflr.controller
  2. {
  3.    import org.puremvc.as3.multicore.patterns.command.MacroCommand;
  4.    
  5.    public class ApplicationStartupCommand extends MacroCommand
  6.    {
  7.       public function ApplicationStartupCommand()
  8.       {
  9.          super();
  10.       }
  11.       
  12.       override protected function initializeMacroCommand() : void
  13.       {
  14.          addSubCommand(ModelPrepCommand);
  15.          addSubCommand(ViewPrepCommand);
  16.       }
  17.    }
  18. }
  19.  
  20.