Skip to content

Instantly share code, notes, and snippets.

@abolibibelot
Created March 21, 2011 13:00
Show Gist options
  • Save abolibibelot/879415 to your computer and use it in GitHub Desktop.
Save abolibibelot/879415 to your computer and use it in GitHub Desktop.
A meager pass-through class for communication between .NET and Dalvik
package mono.samples.googlemaps;
import java.util.List;
public class MapReceiver{
static List<Object> Coords;
public static void setCoordinates(List<Object> coords){
Coords = coords;
}
public static List<Object> getCoordinates(){
return Coords;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment