mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 03:17:28 +08:00
18 lines
571 B
C#
18 lines
571 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
#nullable disable
|
|
|
|
using Android.App;
|
|
using osu.Framework.Android;
|
|
using osu.Game.Tests;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Tests.Android
|
|
{
|
|
[Activity(ConfigurationChanges = DEFAULT_CONFIG_CHANGES, Exported = true, LaunchMode = DEFAULT_LAUNCH_MODE, MainLauncher = true)]
|
|
public class MainActivity : AndroidGameActivity
|
|
{
|
|
protected override Framework.Game CreateGame() => new OsuTestBrowser();
|
|
}
|
|
}
|