Improve scaling of memory use with large numbers of tiles, prep for suspend/resume support

This commit is contained in:
Mike Primm 2011-08-14 14:20:45 +08:00 committed by mikeprimm
parent dd584ebfc7
commit b5d2b4ba34
7 changed files with 95 additions and 14 deletions

View file

@ -87,4 +87,8 @@ public class HDMapTile extends MapTile {
public MapTile[] getAdjecentTiles() {
return perspective.getAdjecentTiles(this);
}
public int tileOrdinalX() { return tx; }
public int tileOrdinalY() { return ty; }
}