Package javaEffect

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

Related Classes of javaEffect.ErrAttack

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.