Guest User

Untitled

a guest
May 21st, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public class Coordinate
  2. {
  3. private int row;
  4. private int col;
  5.  
  6. public Coordinate(int theRow, int theCol)
  7. {
  8. row = theRow;
  9. col = theCol;
  10. }
  11.  
  12. public int getRow()
  13. {
  14. return row;
  15. }
  16.  
  17. public int getCol()
  18. {
  19. return col;
  20. }
  21. }
Add Comment
Please, Sign In to add comment