1
0
mirror of https://github.com/Zrips/Jobs.git synced 2024-11-26 04:25:15 +01:00
Jobs/com/gamingmesh/jobs/container/ExploreRespond.java
2016-01-09 14:58:33 +02:00

21 lines
349 B
Java

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;
}
}