1
0
mirror of https://github.com/Zrips/Jobs.git synced 2024-11-29 22:13:25 +01:00
Jobs/com/gamingmesh/jobs/container/ExploreRespond.java

21 lines
349 B
Java
Raw Normal View History

2016-01-09 13:58:33 +01:00
package com.gamingmesh.jobs.container;
public class ExploreRespond {
int count;
boolean newChunk = false;
public ExploreRespond(int count, boolean newChunk) {
this.count = count;
this.newChunk = newChunk;
}
public int getCount() {
return this.count;
}
public boolean isNewChunk() {
return this.newChunk;
}
}