//still need to take the movement cost of each tile into account public static List <Tile> GetTilesWithinMovement(Unit unit) //get all tiles within a the tile-radius "range" around a given Unit { return(Pathfinding.FindAllReachableTiles(unit)); }