Examples of IBattleModel


Examples of cn.com.hotmaze.model.IBattleModel

    return instance;
  }
 
  public IBattleModel getIdleBattleModel() {
   
    IBattleModel battleModel = idleBattleQueue.poll();
    if(null == battleModel) {
      int battleID = getInteger();
      System.err.println("�½�BattleModel " + battleID);
      battleModel = new BattleModel(battleID);
     
    } else {
      System.out.println("���ؿ���FightModel " + battleModel.getBattleID());
    }
    busyBattleQueue.add(battleModel);
   
    return battleModel;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.