package { import D5Power.Objects.Base; import D5Power.Scene.gameScene; import flash.display.Stage; /** * 全局通用类 * @author D5Power */ public class Global { /** * 直接调用FLASH舞台 */ public static var stage:Stage; /** * 直接调用游戏场景 */ public static var scene:gameScene; public static var base:Base; public function Global() { } } }