Advertisement
Tech_geek23

Locatable.java

Feb 28th, 2013
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.18 KB | None | 0 0
  1. public interface Locatable
  2. {
  3.     public void setPos( int x, int y);
  4.     public void setX( int x );
  5.     public void setY( int y );
  6.  
  7.     public int getX();
  8.     public int getY();
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement