1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| "use strict";
| cc._RF.push(module, 'a472bAE/qdMGJaWfvfP0r8A', 'adventureactivity_const');
| // Scripts/mod/adventureactivity/adventureactivity_const.js
|
| "use strict";
|
| var AdventureactivityConst = {
| Ground_Type: {
| adventure: 1,
| //冒险
| element: 2,
| //元素
| heaven: 3 // 天界副本
|
| },
| // 红点类型
| Red_Type: {
| adventure: 1,
| //冒险
| element: 2,
| //元素
| heaven: 3 // 天界副本
|
| }
| };
| module.exports = AdventureactivityConst;
|
| cc._RF.pop();
|
|