16 lines
543 B
JavaScript
16 lines
543 B
JavaScript
////------------------------------------------------------------------
|
|
// @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;
|