Examples of Holk


Examples of ch.sahits.game.openpatrician.model.ship.impl.Holk

   * Create a a holk with the given name. The holk is not upgraded
   * @param name
   * @return
   */
  public static IHolk createHolk(String name,int value){
    return new Holk(name,value);
  }
View Full Code Here

Examples of ch.sahits.game.openpatrician.model.ship.impl.Holk

   * @param name
   * @param upgradeLevel
   * @return
   */
  public static IHolk createHolk(String name, EShipUpgrade upgradeLevel,int value){
    return new Holk(upgradeLevel, name,value);
  }
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.