123456789101112131415161718192021222324252627 |
- export const ConfigConst = {
- all: 'all',
- nest: 'nest',
- smallLevel: 'smallLevel',
- monster: 'monster',
- bullet: 'bullet',
- }
- export enum EConfigConst {
- all,
- nest,
- smallLevel,
- monster,
- bullet,
- num,
- }
- // export let jsonNames = Object.values(ConfigConst);
- export let jsonNames = [];
- for (let index = 0; index < EConfigConst.num; index++) {
- const element = EConfigConst[index];
- jsonNames.push(element);
- }
|