Package vee

Examples of vee.AttackAction


   

 
 
  public AttackAction attack() {
    AttackAction attackAction = new AttackAction();
    attackAction.setDamage(this.getDamage());
    attackAction.setDamageType(this.getDamageType());  
    return attackAction;
  }
View Full Code Here


  protected DamageType damageType;


  @Override
  public AttackAction attack() {
    AttackAction attackAction = new AttackAction();

    attackAction.setDamage(this.calculateDamage());
    attackAction.setDamageType(this.getDamageType());

    return attackAction;
  }
View Full Code Here

TOP

Related Classes of vee.AttackAction

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.