Examples of ErrAttack


Examples of javaEffect.ErrAttack

   */
  @Override
  public void attack(Spacecraft target) throws ErrAttack {

    if (this.currentPlanet.equals(target.currentPlanet) == false)
      throw new ErrAttack("Not on the same planet");

    target.beAttack(this.attack);

  }
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.