M_ShieldGame.ts 527 B

1234567891011121314151617181920
  1. // ChannelID:渠道ID, GameList: 特殊开放限制游戏, OpenLvList:捕鱼等级限制
  2. export default class M_ShieldGame {
  3. private static data =
  4. {"0":{"ChannelID":0,"GameList":[4,10],"OpenLvList":[15,17]}
  5. }// ChannelID:渠道ID, GameList: 特殊开放限制游戏, OpenLvList:捕鱼等级限制
  6. static getData(key: any): any {
  7. if (key == null || key == undefined)
  8. return null;
  9. return this.data[key];
  10. }
  11. static getAllData(): any {
  12. return this.data;
  13. }
  14. }