Migrate osu! iOS to .NET 6 and target iOS 13.4

This commit is contained in:
Salman Ahmed
2022-12-12 01:25:56 +03:00
parent 60c8ef3fe5
commit 467e879021
20 changed files with 72 additions and 320 deletions

View File

@ -3,7 +3,6 @@
#nullable disable
using osu.Framework.iOS;
using UIKit;
namespace osu.iOS
@ -12,7 +11,7 @@ namespace osu.iOS
{
public static void Main(string[] args)
{
UIApplication.Main(args, typeof(GameUIApplication), typeof(AppDelegate));
UIApplication.Main(args, null, typeof(AppDelegate));
}
}
}