xy-server/game/core/ZhenFaUtil.ts

11 lines
263 B
TypeScript
Raw Normal View History

2025-04-23 09:34:08 +08:00
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]
}
}