Flash AS3教程:Level2D类

2019-10-08 16:35:48王冬梅

package index.com.events{

import flash.events.Event;

public class Level2DEvent extends Event{

public static const LEVEL_RESET:String = "levelReset";

public function Level2DEvent(type:String){
super(type);
}
}
}