1. package anonymousweaponprototype.interfaces;
  2.  
  3. import java.awt.geom.Point2D;
  4.  
  5. /**
  6.  *
  7.  * @author Darin Beaudreau
  8.  */
  9. public interface WeaponInterface {
  10.     public void fire(Point2D target_);
  11. }