home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / zombietypocalypse.swf / scripts / classes / dispatchers / HighscoreEvent.as < prev    next >
Encoding:
Text File  |  2008-09-15  |  451 b   |  23 lines

  1. package classes.dispatchers
  2. {
  3.    import flash.events.Event;
  4.    
  5.    public class HighscoreEvent extends Event
  6.    {
  7.        
  8.       
  9.       private var highscoreArray:Array;
  10.       
  11.       public function HighscoreEvent(param1:String, param2:Array)
  12.       {
  13.          super(param1);
  14.          highscoreArray = param2;
  15.       }
  16.       
  17.       public function get HighscoreArray() : Array
  18.       {
  19.          return highscoreArray;
  20.       }
  21.    }
  22. }
  23.