Examples of BossShip


Examples of fr.umlv.escapeir.model.element.BossShip

  @Override
  public void update(double delta) {
    super.update(delta);
    if (this.getShips() == 0)
      this.setBoss(new BossShip(100, MissileWeapon.ID));
    if (this.getBoss() != null && !this.getBoss().isAlive())
      EscapeIR.stateSwitcher(StateID.WIN);
  }
View Full Code Here

Examples of fr.umlv.escapeir.model.element.BossShip

  @Override
  public void update(double delta) {
    super.update(delta);
    if (this.getShips() == 0)
      this.setBoss(new BossShip(75, MissileWeapon.ID));
    if (this.getBoss() != null && !this.getBoss().isAlive())
      GameState.setLevel(new Jupiter());
  }
View Full Code Here

Examples of fr.umlv.escapeir.model.element.BossShip

  @Override
  public void update(double delta) {
    super.update(delta);
    if (this.getShips() == 0)
      this.setBoss(new BossShip(50, MissileWeapon.ID));
    if (this.getBoss() != null && !this.getBoss().isAlive())
      GameState.setLevel(new Moon());
  }
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.