11 lines
263 B
TypeScript
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]
|
|
}
|
|
}
|