using System; using System.Collections.Generic; using System.Device.Location; namespace MahTweets.Mobile.Core.Interfaces { public interface IKnowWhereYouAre : IPlugin { void Connect(); void Disconnect(); void NewLocationUpdate(String text, string id, GeoCoordinate location); void BeginGetVenues(double phoneLatitude, double phoneLongitude, Action> action); } }