mirror of
https://github.com/osukey/osukey.git
synced 2025-04-29 10:47:22 +09:00
19 lines
574 B
C#
19 lines
574 B
C#
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);
|
|
}
|
|
}
|
|
} |