xy-server/game/core/ZhenFaUtil.ts
2025-04-23 09:34:08 +08:00

11 lines
263 B
TypeScript

import GameUtil from "./GameUtil";
export default class ZhenFaUtil {
static getZhenFaInfo(index:number) {
let conf = GameUtil.game_conf.ZhenFa;
if (index < 0 || index >= conf.length)
return null
return conf[index]
}
}