diff options
| author | aldrikboy <aldrikboy@gmail.com> | 2018-01-26 14:22:18 +0100 |
|---|---|---|
| committer | aldrikboy <aldrikboy@gmail.com> | 2018-01-26 14:22:18 +0100 |
| commit | fae272bc77b1c523a8af7a52bb220b684a2a6c1b (patch) | |
| tree | 3b99c6740f4100f704c82042808731f1ff826b24 /Penguloon/SceneManager.cs | |
| parent | 60f1bddda04ec5fa22778abf176171a547dde949 (diff) | |
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 3aaea41..15fd93d 100644 --- a/Penguloon/SceneManager.cs +++ b/Penguloon/SceneManager.cs @@ -22,6 +22,8 @@ namespace Penguloon public static SceneBase SupportScene { get; set; } + public static SceneBase ShopScene { get; set; } + /// <summary> /// Initialize scene manager. /// </summary> @@ -52,6 +54,8 @@ namespace Penguloon CreditsScene.Draw(deltaTime); break; case SelectedScene.Support: SupportScene.Draw(deltaTime); break; + case SelectedScene.Shop: + ShopScene.Draw(deltaTime); break; default: return; @@ -83,6 +87,8 @@ namespace Penguloon CreditsScene.Update(deltaTime, touchLocations); break; case SelectedScene.Support: SupportScene.Update(deltaTime, touchLocations); break; + case SelectedScene.Shop: + ShopScene.Update(deltaTime, touchLocations); break; default: return; |
