home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Puzzle / Clusterz / Clusterz.swf / scripts / OCGame.as < prev    next >
Encoding:
Text File  |  2008-09-12  |  346 b   |  21 lines

  1. package
  2. {
  3.    import ENGINE.GAME.OGame;
  4.    
  5.    public class OCGame extends OGame
  6.    {
  7.        
  8.       
  9.       public function OCGame()
  10.       {
  11.          super(2,5);
  12.       }
  13.       
  14.       override public function DefaultInitLocalScores() : void
  15.       {
  16.          this.iScores.Clear(0);
  17.          this.iScores.SortOn(0);
  18.       }
  19.    }
  20. }
  21.