package project;

abstract class Attack extends Event {
  
  protected int AttackPower, health;
  protected ManageText text;
  
  abstract void update();
  abstract void Attack () throws NullTargetException;
  abstract void EnterBattleMode () throws NullTargetException;

} //class Attack
  