Add render statistics, support for tile hashcodes to stop non-updates

This commit is contained in:
Mike Primm 2011-05-31 00:33:54 -05:00
parent 4b30fff8a7
commit d393ccf6e9
11 changed files with 418 additions and 115 deletions

View file

@ -56,4 +56,10 @@ public class KzedZoomedMapTile extends MapTile {
}
return super.equals(obj);
}
public String getKey() {
return getWorld().getName() + ".z" + originalTile.renderer.getName();
}
}