dynmap-neoforge/src/main/java/org/dynmap/hdmap/HDMapTileRenderer.java
2011-07-04 09:28:06 -05:00

19 lines
431 B
Java

package org.dynmap.hdmap;
import java.io.File;
import org.dynmap.utils.MapChunkCache;
import org.json.simple.JSONObject;
public interface HDMapTileRenderer {
String getName();
boolean render(MapChunkCache cache, HDMapTile tile, File outputFile);
void buildClientConfiguration(JSONObject worldObject);
boolean isBiomeDataNeeded();
boolean isRawBiomeDataNeeded();
boolean isNightAndDayEnabled();
}