Added chunk loading to rendering.

This commit is contained in:
FrozenCow 2011-02-04 23:12:55 +01:00
parent fde56275fe
commit 138aed8c33
8 changed files with 175 additions and 289 deletions

View file

@ -3,5 +3,5 @@ package org.dynmap.kzedmap;
public interface MapTileRenderer {
String getName();
void render(KzedMapTile tile, String path);
boolean render(KzedMapTile tile, String path);
}