Guest User

Untitled

a guest
Mar 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. {
  2. "spawn1": {
  3. "x": 336.4962312645427,
  4. "y": 81.0,
  5. "z": -259.029426052796
  6. },
  7. "spawn2": {
  8. "x": 341.11558917719424,
  9. "y": 80.0,
  10. "z": -246.07415114625
  11. }
  12. }
  13.  
  14. public class Chest {
  15. private double x, y, z;
  16.  
  17. public Chest(double x, double y, double z) {
  18. this.x = x;
  19. this.y = y;
  20. this.z = z;
  21. }
  22. }
  23.  
  24. public class ClassOne
  25. {
  26. ClassTwo spawn1;
  27. ClassTwo spawn2;
  28. }
  29.  
  30. public class ClassTwo
  31. {
  32. double x;
  33. double y;
  34. double z;
  35. }
Add Comment
Please, Sign In to add comment