osukey/osu.Android/GameView.cs
tangalbert919 660be6a2a4 Remove ability to import from opsu!
This has been struck down by @ppy
2018-12-20 09:11:20 -06:00

26 lines
642 B
C#

// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using Android.Content;
using Android.Util;
using osu.Framework.Android;
using osu.Game;
namespace osu.Android
{
public class GameView : AndroidGameView
{
public GameView(Context context, IAttributeSet attrs) :
base(context, attrs)
{
CreateGame();
}
public GameView(Context context) : base(context)
{
CreateGame();
}
public override Framework.Game CreateGame() => new OsuGame();
}
}