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] } }