hytale-server/com/hypixel/hytale/server/npc/sensorinfo/CachedPositionProvider.java

14 lines
300 B
Java

package com.hypixel.hytale.server.npc.sensorinfo;
public class CachedPositionProvider extends PositionProvider {
private boolean fromCache;
public void setIsFromCache(boolean status) {
this.fromCache = status;
}
public boolean isFromCache() {
return this.fromCache;
}
}