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)); } } }