Files
fc/dev/project/library/imports/4a/4af5718c-cc94-4c54-9819-6bc6922eacac.js
2026-05-24 10:21:26 +08:00

43 lines
813 B
JavaScript

"use strict";
cc._RF.push(module, '4af57GMzJRMVJgZa8aSLqys', 'guild_const');
// Scripts/mod/guild/base/guild_const.js
"use strict";
// --------------------------------------------------------------------
// @author: shiraho@syg.com(必填, 创建模块的人员)
// @description:
// 公会相关倡廉控制
// <br/>Create: new Date().toISOString()
// --------------------------------------------------------------------
module.exports = {
// 公会职位
PositionType: {
Leader: 1,
// 盟主
Assistant: 2,
// 副盟主
Member: 3 // 成员
},
// 审核类型
ApplyJoinType: {
Auto: 0,
// 自动
Manual: 1,
// 手动
Close: 2 // 不允许
},
ListType: {
Total: 1,
Search: 2
},
guildAttrType: {
PVP: 1,
PVE: 2
}
};
cc._RF.pop();