mirror of
https://github.com/Zrips/Jobs.git
synced 2024-11-26 04:25:15 +01:00
21 lines
349 B
Java
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;
|
|
}
|
|
}
|