mirror of
https://github.com/Zrips/Jobs.git
synced 2024-11-26 12:35:28 +01:00
30 lines
525 B
Java
30 lines
525 B
Java
package com.gamingmesh.jobs.container;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class ExploreRegion {
|
|
|
|
int x;
|
|
int z;
|
|
List<ExploreChunk> chunks = new ArrayList<ExploreChunk>();
|
|
|
|
public ExploreRegion(int x, int z, List<ExploreChunk> chunks) {
|
|
this.x = x;
|
|
this.z = z;
|
|
}
|
|
|
|
public ExploreRegion(int x, int z) {
|
|
this.x = x;
|
|
this.z = z;
|
|
}
|
|
|
|
public void addChunk(ExploreChunk chunk) {
|
|
chunks.add(chunk);
|
|
}
|
|
|
|
public List<ExploreChunk> getChunks() {
|
|
return chunks;
|
|
}
|
|
}
|