Setup osu.Android solution and its ruleset tests

This commit is contained in:
tangalbert919
2019-01-05 22:15:09 -06:00
parent 2088bd1f1f
commit ddce608f97
120 changed files with 1591 additions and 58 deletions

View File

@ -0,0 +1,19 @@
using Android.App;
using Android.OS;
using Android.Support.V7.App;
using Android.Runtime;
using Android.Widget;
namespace osu.Game.Rulesets.Mania.Tests.Android
{
[Activity(Label = "@string/app_name", Theme = "@style/AppTheme", MainLauncher = true)]
public class MainActivity : AppCompatActivity
{
protected override void OnCreate(Bundle savedInstanceState)
{
base.OnCreate(savedInstanceState);
// Set our view from the "main" layout resource
SetContentView(Resource.Layout.activity_main);
}
}
}