package com.medievaltech.advancewars; import android.graphics.Canvas; import android.graphics.Point; public class Map { private Tile[][] grid; public Map(int width, int height) { grid = new Tile[width][height]; } public Map(Tile t, int width, int height) { grid = new Tile[width][height]; for(int x=0; x