36 lines
905 B
JavaScript
36 lines
905 B
JavaScript
"use strict";
|
|
cc._RF.push(module, 'ba6c6J8nMNO2r2ExY5r4YCa', 'friend_const');
|
|
// Scripts/mod/friend/friend_const.js
|
|
|
|
"use strict";
|
|
|
|
var _FriendGroupName;
|
|
// --------------------------------------------------------------------
|
|
// @author: zhangyusong@syg.com(必填, 创建模块的人员)
|
|
// @description:
|
|
//
|
|
// <br/>Create: new Date().toISOString()
|
|
// --------------------------------------------------------------------
|
|
var FriendConst = {
|
|
Type: {
|
|
MyFriend: 1,
|
|
ApplyList: 2,
|
|
BlackList: 3,
|
|
Find: 4
|
|
},
|
|
FriendGroupType: {
|
|
friend: 1,
|
|
//我的好友
|
|
cross_friend: 2,
|
|
//跨服好友
|
|
black_list: 3 //黑名单
|
|
},
|
|
|
|
FriendGroupName: (_FriendGroupName = {}, _FriendGroupName[1] = "我的好友", _FriendGroupName[2] = "跨服好友", _FriendGroupName[3] = "黑名单", _FriendGroupName)
|
|
|
|
// apply_lev_limit = 5
|
|
};
|
|
|
|
module.exports = FriendConst;
|
|
|
|
cc._RF.pop(); |