home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Puzzle / Easter_Eggs.swf / scripts / __Packages / com / novelgames / flashgames / commonAS2 / CommonGame.as next >
Text File  |  2008-09-04  |  485b  |  20 lines

  1. class com.novelgames.flashgames.commonAS2.CommonGame extends com.novelgames.flashgames.commonAS2.NewMovieClip
  2. {
  3.    function CommonGame()
  4.    {
  5.       super();
  6.    }
  7.    static function get gameStage()
  8.    {
  9.       return com.novelgames.flashgames.commonAS2.NewStage.getNewStage();
  10.    }
  11.    function pause()
  12.    {
  13.       com.novelgames.flashgames.commonAS2.NewTimer.pause();
  14.    }
  15.    function unpause()
  16.    {
  17.       com.novelgames.flashgames.commonAS2.NewTimer.unpause();
  18.    }
  19. }
  20.