Advertisement
advictoriam

Untitled

Feb 28th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.18 KB | None | 0 0
  1. /**
  2.    Implements a generalized interface for
  3.    types of movement by objects.
  4. */
  5.  
  6. public interface Movement
  7. {
  8.    public void move(int n);
  9.    public String getPosition();
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement