Skip to content

Commit

Permalink
Update iOS startup code
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Mar 26, 2023
1 parent 27de331 commit 816eff1
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 137 deletions.
17 changes: 0 additions & 17 deletions osu.Game.Rulesets.Catch.Tests.iOS/AppDelegate.cs

This file was deleted.

7 changes: 3 additions & 4 deletions osu.Game.Rulesets.Catch.Tests.iOS/Application.cs
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.

#nullable disable

using UIKit;
using osu.Framework.iOS;
using osu.Game.Tests;

namespace osu.Game.Rulesets.Catch.Tests.iOS
{
public static class Application
{
public static void Main(string[] args)
{
UIApplication.Main(args, null, typeof(AppDelegate));
GameApplication.Main(new OsuTestBrowser());
}
}
}
17 changes: 0 additions & 17 deletions osu.Game.Rulesets.Mania.Tests.iOS/AppDelegate.cs

This file was deleted.

7 changes: 3 additions & 4 deletions osu.Game.Rulesets.Mania.Tests.iOS/Application.cs
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.

#nullable disable

using UIKit;
using osu.Framework.iOS;
using osu.Game.Tests;

namespace osu.Game.Rulesets.Mania.Tests.iOS
{
public static class Application
{
public static void Main(string[] args)
{
UIApplication.Main(args, null, typeof(AppDelegate));
GameApplication.Main(new OsuTestBrowser());
}
}
}
17 changes: 0 additions & 17 deletions osu.Game.Rulesets.Osu.Tests.iOS/AppDelegate.cs

This file was deleted.

7 changes: 3 additions & 4 deletions osu.Game.Rulesets.Osu.Tests.iOS/Application.cs
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.

#nullable disable

using UIKit;
using osu.Framework.iOS;
using osu.Game.Tests;

namespace osu.Game.Rulesets.Osu.Tests.iOS
{
public static class Application
{
public static void Main(string[] args)
{
UIApplication.Main(args, null, typeof(AppDelegate));
GameApplication.Main(new OsuTestBrowser());
}
}
}
17 changes: 0 additions & 17 deletions osu.Game.Rulesets.Taiko.Tests.iOS/AppDelegate.cs

This file was deleted.

7 changes: 3 additions & 4 deletions osu.Game.Rulesets.Taiko.Tests.iOS/Application.cs
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.

#nullable disable

using UIKit;
using osu.Framework.iOS;
using osu.Game.Tests;

namespace osu.Game.Rulesets.Taiko.Tests.iOS
{
public static class Application
{
public static void Main(string[] args)
{
UIApplication.Main(args, null, typeof(AppDelegate));
GameApplication.Main(new OsuTestBrowser());
}
}
}
16 changes: 0 additions & 16 deletions osu.Game.Tests.iOS/AppDelegate.cs

This file was deleted.

6 changes: 2 additions & 4 deletions osu.Game.Tests.iOS/Application.cs
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.

#nullable disable

using UIKit;
using osu.Framework.iOS;

namespace osu.Game.Tests.iOS
{
public static class Application
{
public static void Main(string[] args)
{
UIApplication.Main(args, null, typeof(AppDelegate));
GameApplication.Main(new OsuTestBrowser());
}
}
}
29 changes: 0 additions & 29 deletions osu.iOS/AppDelegate.cs

This file was deleted.

6 changes: 2 additions & 4 deletions osu.iOS/Application.cs
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.

#nullable disable

using UIKit;
using osu.Framework.iOS;

namespace osu.iOS
{
public static class Application
{
public static void Main(string[] args)
{
UIApplication.Main(args, null, typeof(AppDelegate));
GameApplication.Main(new OsuGameIOS());
}
}
}

0 comments on commit 816eff1

Please sign in to comment.