-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ios-app-delegates' into ios-hide-file-selector-popover
- Loading branch information
Showing
12 changed files
with
106 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +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. | ||
|
||
using Foundation; | ||
using osu.Framework.iOS; | ||
using osu.Game.Tests; | ||
|
||
namespace osu.Game.Rulesets.Catch.Tests.iOS | ||
{ | ||
[Register("AppDelegate")] | ||
public class AppDelegate : GameApplicationDelegate | ||
{ | ||
protected override Framework.Game CreateGame() => new OsuTestBrowser(); | ||
} | ||
} |
7 changes: 3 additions & 4 deletions
7
...e.Rulesets.Catch.Tests.iOS/Application.cs → osu.Game.Rulesets.Catch.Tests.iOS/Program.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +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. | ||
|
||
using osu.Framework.iOS; | ||
using osu.Game.Tests; | ||
using UIKit; | ||
|
||
namespace osu.Game.Rulesets.Catch.Tests.iOS | ||
{ | ||
public static class Application | ||
public static class Program | ||
{ | ||
public static void Main(string[] args) | ||
{ | ||
GameApplication.Main(new OsuTestBrowser()); | ||
UIApplication.Main(args, null, typeof(AppDelegate)); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +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. | ||
|
||
using Foundation; | ||
using osu.Framework.iOS; | ||
using osu.Game.Tests; | ||
|
||
namespace osu.Game.Rulesets.Mania.Tests.iOS | ||
{ | ||
[Register("AppDelegate")] | ||
public class AppDelegate : GameApplicationDelegate | ||
{ | ||
protected override Framework.Game CreateGame() => new OsuTestBrowser(); | ||
} | ||
} |
7 changes: 3 additions & 4 deletions
7
...e.Rulesets.Mania.Tests.iOS/Application.cs → osu.Game.Rulesets.Mania.Tests.iOS/Program.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +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. | ||
|
||
using osu.Framework.iOS; | ||
using osu.Game.Tests; | ||
using UIKit; | ||
|
||
namespace osu.Game.Rulesets.Mania.Tests.iOS | ||
{ | ||
public static class Application | ||
public static class Program | ||
{ | ||
public static void Main(string[] args) | ||
{ | ||
GameApplication.Main(new OsuTestBrowser()); | ||
UIApplication.Main(args, null, typeof(AppDelegate)); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +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. | ||
|
||
using Foundation; | ||
using osu.Framework.iOS; | ||
using osu.Game.Tests; | ||
|
||
namespace osu.Game.Rulesets.Osu.Tests.iOS | ||
{ | ||
[Register("AppDelegate")] | ||
public class AppDelegate : GameApplicationDelegate | ||
{ | ||
protected override Framework.Game CreateGame() => new OsuTestBrowser(); | ||
} | ||
} |
7 changes: 3 additions & 4 deletions
7
...ame.Rulesets.Osu.Tests.iOS/Application.cs → osu.Game.Rulesets.Osu.Tests.iOS/Program.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +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. | ||
|
||
using osu.Framework.iOS; | ||
using osu.Game.Tests; | ||
using UIKit; | ||
|
||
namespace osu.Game.Rulesets.Osu.Tests.iOS | ||
{ | ||
public static class Application | ||
public static class Program | ||
{ | ||
public static void Main(string[] args) | ||
{ | ||
GameApplication.Main(new OsuTestBrowser()); | ||
UIApplication.Main(args, null, typeof(AppDelegate)); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +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. | ||
|
||
using Foundation; | ||
using osu.Framework.iOS; | ||
using osu.Game.Tests; | ||
|
||
namespace osu.Game.Rulesets.Taiko.Tests.iOS | ||
{ | ||
[Register("AppDelegate")] | ||
public class AppDelegate : GameApplicationDelegate | ||
{ | ||
protected override Framework.Game CreateGame() => new OsuTestBrowser(); | ||
} | ||
} |
7 changes: 3 additions & 4 deletions
7
...e.Rulesets.Taiko.Tests.iOS/Application.cs → osu.Game.Rulesets.Taiko.Tests.iOS/Program.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +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. | ||
|
||
using osu.Framework.iOS; | ||
using osu.Game.Tests; | ||
using UIKit; | ||
|
||
namespace osu.Game.Rulesets.Taiko.Tests.iOS | ||
{ | ||
public static class Application | ||
public static class Program | ||
{ | ||
public static void Main(string[] args) | ||
{ | ||
GameApplication.Main(new OsuTestBrowser()); | ||
UIApplication.Main(args, null, typeof(AppDelegate)); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence. | ||
// See the LICENCE file in the repository root for full licence text. | ||
|
||
using Foundation; | ||
using osu.Framework.iOS; | ||
|
||
namespace osu.Game.Tests.iOS | ||
{ | ||
[Register("AppDelegate")] | ||
public class AppDelegate : GameApplicationDelegate | ||
{ | ||
protected override Framework.Game CreateGame() => new OsuTestBrowser(); | ||
} | ||
} |
6 changes: 3 additions & 3 deletions
6
osu.Game.Tests.iOS/Application.cs → osu.Game.Tests.iOS/Program.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +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. | ||
|
||
using osu.Framework.iOS; | ||
using UIKit; | ||
|
||
namespace osu.Game.Tests.iOS | ||
{ | ||
public static class Application | ||
public static class Program | ||
{ | ||
public static void Main(string[] args) | ||
{ | ||
GameApplication.Main(new OsuTestBrowser()); | ||
UIApplication.Main(args, null, typeof(AppDelegate)); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence. | ||
// See the LICENCE file in the repository root for full licence text. | ||
|
||
using Foundation; | ||
using osu.Framework.iOS; | ||
|
||
namespace osu.iOS | ||
{ | ||
[Register("AppDelegate")] | ||
public class AppDelegate : GameApplicationDelegate | ||
{ | ||
protected override Framework.Game CreateGame() => new OsuGameIOS(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +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. | ||
|
||
using osu.Framework.iOS; | ||
using UIKit; | ||
|
||
namespace osu.iOS | ||
{ | ||
public static class Application | ||
public static class Program | ||
{ | ||
public static void Main(string[] args) | ||
{ | ||
GameApplication.Main(new OsuGameIOS()); | ||
UIApplication.Main(args, null, typeof(AppDelegate)); | ||
} | ||
} | ||
} |