Guest User

Untitled

a guest
Feb 21st, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public class Line {
  2.  
  3. public int posx;
  4. public int posy;
  5. public int dim1;
  6. public int dim2;
  7.  
  8. public Line (int _posx, int _posy, int _dim1, int _dim2) {
  9. this.posx = _posx;
  10. this.posy = _posy;
  11. this.dim1 = _dim1;
  12. this.dim2 = _dim2;
  13. }
  14. }
Add Comment
Please, Sign In to add comment