Advertisement
Guest User

Weapon Interface

a guest
Dec 6th, 2012
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement