Advertisement
MrGG4ming

Untitled

Feb 6th, 2017
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. package com.terrains.users;
  2.  
  3. import org.bukkit.Location;
  4.  
  5. public class Locations {
  6.  
  7. private Location p1;
  8. private Location p2;
  9.  
  10. public Locations(Location p1, Location p2) {
  11. this.p1 = p1;
  12. this.p2 = p2;
  13. }
  14.  
  15. public Location getP1() {
  16. return p1;
  17. }
  18.  
  19. public void setP1(Location p1) {
  20. this.p1 = p1;
  21. }
  22.  
  23. public Location getP2() {
  24. return p2;
  25. }
  26.  
  27. public void setP2(Location p2) {
  28. this.p2 = p2;
  29. }
  30.  
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement