refactorise

This commit is contained in:
Paul Schneider 2017-01-18 13:12:12 +01:00
commit a454e8e602
10 changed files with 233 additions and 75 deletions

View file

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Android.App;
using Android.Content;
using Android.OS;
using Android.Runtime;
using Android.Views;
using Android.Widget;
namespace BookAStar.Droid.Interfaces
{
interface IGCMessageHandler
{
void Handle( string from, Bundle data);
}
}