Examples of Crayer


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

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

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

   * @param name
   * @param upgradeLevel
   * @return
   */
  public static ICrayer createCrayer(String name, EShipUpgrade upgradeLevel,int value){
    return new Crayer(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.