Advertisement
TrodelHD

Untitled

May 31st, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. package toolbox;
  2.  
  3. public class Vector5Int {
  4. int x;
  5. int y;
  6. int x2;
  7. int y2;
  8. int f;
  9. public Vector5Int(int x, int y,int x2, int y2, int f) {
  10. this.x = x;
  11. this.y = y;
  12. this.x2 = x2;
  13. this.y2 = y2;
  14. this.f = f;
  15. }
  16. public int getX() {
  17. return x;
  18. }
  19. public void setX(int x) {
  20. this.x = x;
  21. }
  22. public int getY() {
  23. return y;
  24. }
  25. public void setY(int y) {
  26. this.y = y;
  27. }
  28. public int getF() {
  29. return f;
  30. }
  31. public void setF(int f) {
  32. this.f = f;
  33. }
  34. public int getX2() {
  35. return x2;
  36. }
  37. public void setX2(int x2) {
  38. this.x2 = x2;
  39. }
  40. public int getY2() {
  41. return y2;
  42. }
  43. public void setY2(int y2) {
  44. this.y2 = y2;
  45. }
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement