From 8c9d39700d66af8c12ff2a82a46f39a8ea241b19 Mon Sep 17 00:00:00 2001 From: Salman Ahmed Date: Thu, 11 Nov 2021 20:22:32 +0300 Subject: [PATCH] Update deprecated code in iOS main entry --- osu.iOS/Application.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/osu.iOS/Application.cs b/osu.iOS/Application.cs index 740937e0e1..ffabdb4698 100644 --- a/osu.iOS/Application.cs +++ b/osu.iOS/Application.cs @@ -1,6 +1,7 @@ // Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. +using osu.Framework.iOS; using UIKit; namespace osu.iOS @@ -9,7 +10,7 @@ namespace osu.iOS { public static void Main(string[] args) { - UIApplication.Main(args, "GameUIApplication", "AppDelegate"); + UIApplication.Main(args, typeof(GameUIApplication), typeof(AppDelegate)); } } }