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