home *** CD-ROM | disk | FTP | other *** search
- package classes.dispatchers
- {
- import flash.events.EventDispatcher;
- import flash.events.IEventDispatcher;
-
- public class HighscoreLoaded extends EventDispatcher
- {
-
- public static const HIGHSCORE_LOADED:String = "HighscoreLoaded";
-
-
- public function HighscoreLoaded(param1:IEventDispatcher = null)
- {
- super(param1);
- }
-
- public function highscoreLoaded(param1:Array) : void
- {
- this.onHighscoreLoaded(param1);
- }
-
- private function onHighscoreLoaded(param1:Array) : void
- {
- dispatchEvent(new HighscoreEvent(HighscoreLoaded.HIGHSCORE_LOADED,param1));
- }
- }
- }
-