A game framework written with osu! in mind.
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2// See the LICENCE file in the repository root for full licence text.
3
4using Android.App;
5using Android.Content.PM;
6using osu.Framework.Android;
7
8namespace osu.Framework.Tests.Android
9{
10 [Activity(MainLauncher = true, ConfigurationChanges = ConfigChanges.Orientation | ConfigChanges.ScreenSize, Theme = "@android:style/Theme.NoTitleBar")]
11 public class TestGameActivity : AndroidGameActivity
12 {
13 protected override Game CreateGame()
14 => new VisualTestGame();
15 }
16}