23 lines
529 B
JavaScript
23 lines
529 B
JavaScript
|
|
"use strict";
|
||
|
|
cc._RF.push(module, '7d2c3dAyulEV5rM6hZSQDEs', 'cmp.guild.race.wnd');
|
||
|
|
// Scripts/mod/guild/base/cmps/cmp.guild.race.wnd.js
|
||
|
|
|
||
|
|
"use strict";
|
||
|
|
|
||
|
|
/******************************************************************
|
||
|
|
*
|
||
|
|
* 联盟联赛
|
||
|
|
*
|
||
|
|
******************************************************************/
|
||
|
|
|
||
|
|
var BridgeWindow = require("bridge.window");
|
||
|
|
cc.Class({
|
||
|
|
"extends": BridgeWindow,
|
||
|
|
properties: {},
|
||
|
|
// 显示
|
||
|
|
onEnable: function onEnable() {},
|
||
|
|
// 关闭
|
||
|
|
onDisable: function onDisable() {}
|
||
|
|
});
|
||
|
|
|
||
|
|
cc._RF.pop();
|