Package fr.umlv.escapeir.model.element

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


  @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

  @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

Related Classes of fr.umlv.escapeir.model.element.BossShip

Copyright © 2018 www.massapicom. 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.