HD renderer prototype

This commit is contained in:
Mike Primm 2011-07-04 09:28:06 -05:00
parent 33206e089f
commit 630759c87b
8 changed files with 905 additions and 0 deletions

View file

@ -0,0 +1,19 @@
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();
}