25 lines
408 B
JavaScript
25 lines
408 B
JavaScript
/******************************************************************
|
|
*
|
|
* 行星武器奖励弹窗
|
|
*
|
|
******************************************************************/
|
|
|
|
const BridgeWindow = require( "bridge.window" );
|
|
cc.Class( {
|
|
|
|
extends: BridgeWindow,
|
|
|
|
properties: {
|
|
},
|
|
|
|
// 重载:参数打开
|
|
onOpenConfigs: function() {
|
|
|
|
},
|
|
|
|
onPreClosed: function() {
|
|
|
|
},
|
|
|
|
} );
|