26 lines
674 B
JavaScript
26 lines
674 B
JavaScript
"use strict";
|
|
cc._RF.push(module, '08c1f5AK/dGj7q0i/zMwEln', 'mainui_const');
|
|
// Scripts/mod/mainui/mainui_const.js
|
|
|
|
"use strict";
|
|
|
|
////------------------------------------------------------------------
|
|
// @author: shiraho@syg.com(必填, 创建模块的人员)
|
|
// @description:
|
|
// 主ui界面的一些常量
|
|
// <br/>Create: new Date().toISOString()
|
|
////------------------------------------------------------------------
|
|
var MainUiConst = {
|
|
// 通用的获得物品界面,打开来源
|
|
item_open_type: {
|
|
normal: 1,
|
|
// 普通
|
|
seerpalace: 2,
|
|
// 先知召唤获得
|
|
heavendial: 3 // 神装转盘
|
|
}
|
|
};
|
|
|
|
module.exports = MainUiConst;
|
|
|
|
cc._RF.pop(); |