Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. package fr.isen;
  2.  
  3. public class Player {
  4. private Position position;
  5.  
  6. public Position getPosition() {
  7. return position;
  8. }
  9.  
  10. public void setPosition(Position position) {
  11. this.position = position;
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement