1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| "use strict";
| cc._RF.push(module, 'd6b90+jmXxJr5ORu6cqVV8B', 'adventure_const');
| // Scripts/mod/adventure/adventure_const.js
|
| "use strict";
|
| var AdventureConst = {
| // -- 状态(0:未开始 1:可探索 2:探索中 3:已完成)
| status: {
| lock: 0,
| can_open: 1,
| open: 2,
| over: 3
| }
| };
| module.exports = AdventureConst;
|
| cc._RF.pop();
|
|