mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Setup osu.Android solution and its ruleset tests
This commit is contained in:
19
osu.Game.Rulesets.Taiko.Tests.Android/MainActivity.cs
Normal file
19
osu.Game.Rulesets.Taiko.Tests.Android/MainActivity.cs
Normal 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.Taiko.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);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user