diff options
| author | aldrikboy <aldrikboy@gmail.com> | 2018-01-12 13:32:26 +0100 |
|---|---|---|
| committer | aldrikboy <aldrikboy@gmail.com> | 2018-01-12 13:32:26 +0100 |
| commit | f93e133ede2a76be1aa20a33c9fcf01308cd6df8 (patch) | |
| tree | 1a906cc08cefd785628ba0e416136f843a37b7f3 /Penguloon/SceneManager.cs | |
| parent | 39b1a897eec86f532ca1417698057ae9e1130985 (diff) | |
dab
Diffstat (limited to 'Penguloon/SceneManager.cs')
| -rw-r--r-- | Penguloon/SceneManager.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Penguloon/SceneManager.cs b/Penguloon/SceneManager.cs index 8ce887e..3aaea41 100644 --- a/Penguloon/SceneManager.cs +++ b/Penguloon/SceneManager.cs @@ -20,6 +20,8 @@ namespace Penguloon public static SceneBase CreditsScene { get; set; } + public static SceneBase SupportScene { get; set; } + /// <summary> /// Initialize scene manager. /// </summary> @@ -48,6 +50,8 @@ namespace Penguloon StatsScene.Draw(deltaTime); break; case SelectedScene.Credits: CreditsScene.Draw(deltaTime); break; + case SelectedScene.Support: + SupportScene.Draw(deltaTime); break; default: return; @@ -77,6 +81,8 @@ namespace Penguloon StatsScene.Update(deltaTime, touchLocations); break; case SelectedScene.Credits: CreditsScene.Update(deltaTime, touchLocations); break; + case SelectedScene.Support: + SupportScene.Update(deltaTime, touchLocations); break; default: return; |
