Created
March 21, 2011 13:00
-
-
Save abolibibelot/879415 to your computer and use it in GitHub Desktop.
A meager pass-through class for communication between .NET and Dalvik
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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