forked from ppy/osu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
16 additions
and
137 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,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()); | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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,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()); | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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,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()); | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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,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()); | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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,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()); | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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,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()); | ||
} | ||
} | ||
} |