Advertisement
Guest User

Untitled

a guest
Mar 25th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. private List<Location> spawns;
  2.  
  3. private static ArrayList<Map> allMaps;
  4.  
  5. private String mapName;
  6.  
  7. private Location Max, Min, Spec;
  8.  
  9. private int votes;
  10.  
  11. public Map(String mapName, Location min, Location max, List<Location> spawns, Location spectator) {
  12.  
  13. this.mapName = mapName;
  14.  
  15. this.Min = min;
  16. this.Max = max;
  17. this.spawns = spawns;
  18. this.Spec = spectator;
  19.  
  20. votes = 0;
  21.  
  22. allMaps.add(this);
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement