Integer X = ship.get("X").getDataByInt();
Integer Y = ship.get("Y").getDataByInt();
Integer tileSize = World.This().TILE_SIZE;
for( String str : World.This().tileMap.keySet() ){
Tile tile = World.This().tileMap.get(str);
Integer xLoc = tile.x*tileSize+tileSize/2;
Integer yLoc = tile.y*tileSize+tileSize/2;
Integer width = tile.width;
Integer height = tile.height;