home *** CD-ROM | disk | FTP | other *** search
- package classes.dispatchers
- {
- import flash.events.Event;
-
- public class HighscoreEvent extends Event
- {
-
-
- private var highscoreArray:Array;
-
- public function HighscoreEvent(param1:String, param2:Array)
- {
- super(param1);
- highscoreArray = param2;
- }
-
- public function get HighscoreArray() : Array
- {
- return highscoreArray;
- }
- }
- }
-