-
Notifications
You must be signed in to change notification settings - Fork 422
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into ios-fix-mixing
- Loading branch information
Showing
16 changed files
with
158 additions
and
71 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; | ||
using osu.Framework.iOS; | ||
|
||
namespace SampleGame.iOS | ||
{ | ||
[Register("AppDelegate")] | ||
public class AppDelegate : GameApplicationDelegate | ||
{ | ||
protected override Game CreateGame() => new SampleGameGame(); | ||
} | ||
} |
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 |
---|---|---|
@@ -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 UIKit; | ||
|
||
namespace SampleGame.iOS | ||
{ | ||
public static class Program | ||
{ | ||
public static void Main(string[] args) | ||
{ | ||
UIApplication.Main(args, null, typeof(AppDelegate)); | ||
} | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
osu.Framework.Templates/templates/template-empty/TemplateGame.iOS/AppDelegate.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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using osu.Framework.iOS; | ||
using TemplateGame.Game; | ||
|
||
namespace TemplateGame.iOS | ||
{ | ||
/// <inheritdoc /> | ||
public class AppDelegate : GameApplicationDelegate | ||
{ | ||
/// <inheritdoc /> | ||
protected override osu.Framework.Game CreateGame() => new TemplateGameGame(); | ||
} | ||
} |
13 changes: 0 additions & 13 deletions
13
osu.Framework.Templates/templates/template-empty/TemplateGame.iOS/Application.cs
This file was deleted.
Oops, something went wrong.
16 changes: 16 additions & 0 deletions
16
osu.Framework.Templates/templates/template-empty/TemplateGame.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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using UIKit; | ||
|
||
namespace TemplateGame.iOS | ||
{ | ||
/// <summary> | ||
/// </summary> | ||
public static class Program | ||
{ | ||
/// <summary> | ||
/// </summary> | ||
public static void Main(string[] args) | ||
{ | ||
UIApplication.Main(args, null, typeof(AppDelegate)); | ||
} | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
osu.Framework.Templates/templates/template-flappy/FlappyDon.iOS/AppDelegate.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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using FlappyDon.Game; | ||
using osu.Framework.iOS; | ||
|
||
namespace FlappyDon.iOS | ||
{ | ||
/// <inheritdoc /> | ||
public class AppDelegate : GameApplicationDelegate | ||
{ | ||
/// <inheritdoc /> | ||
protected override osu.Framework.Game CreateGame() => new FlappyDonGame(); | ||
} | ||
} |
10 changes: 0 additions & 10 deletions
10
osu.Framework.Templates/templates/template-flappy/FlappyDon.iOS/Application.cs
This file was deleted.
Oops, something went wrong.
16 changes: 16 additions & 0 deletions
16
osu.Framework.Templates/templates/template-flappy/FlappyDon.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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using UIKit; | ||
|
||
namespace FlappyDon.iOS | ||
{ | ||
/// <summary> | ||
/// </summary> | ||
public static class Program | ||
{ | ||
/// <summary> | ||
/// </summary> | ||
public static void Main(string[] args) | ||
{ | ||
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.Framework.Tests | ||
{ | ||
[Register("AppDelegate")] | ||
public class AppDelegate : GameApplicationDelegate | ||
{ | ||
protected override Game CreateGame() => new VisualTestGame(); | ||
} | ||
} |
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 |
---|---|---|
@@ -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 UIKit; | ||
|
||
namespace osu.Framework.Tests | ||
{ | ||
public static class Program | ||
{ | ||
public static void Main(string[] args) | ||
{ | ||
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
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
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
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