diff options
author | marcinzelent <marcin@zelent.net> | 2020-02-01 17:06:41 +0100 |
---|---|---|
committer | marcinzelent <marcin@zelent.net> | 2020-02-01 17:06:41 +0100 |
commit | a8fe54592f727ddad05040b82ccb490218682d7c (patch) | |
tree | 324d5be7c1e61a5f19daaf526147d69c6763f47e /nGJ2019/Assets/Scripts/TitleScreen.cs | |
parent | 98bb688bd7c709eca3e97c5e9d58415d7df65db3 (diff) |
Renamed to Dragon Dust
Diffstat (limited to 'nGJ2019/Assets/Scripts/TitleScreen.cs')
-rw-r--r-- | nGJ2019/Assets/Scripts/TitleScreen.cs | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/nGJ2019/Assets/Scripts/TitleScreen.cs b/nGJ2019/Assets/Scripts/TitleScreen.cs deleted file mode 100644 index 00875da..0000000 --- a/nGJ2019/Assets/Scripts/TitleScreen.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System.Collections; -using System.Collections.Generic; -using UnityEngine; -using UnityEngine.EventSystems; -using UnityEngine.SceneManagement; - -public class TitleScreen : MonoBehaviour -{ - void Update() - { - // quit application when back button is clicked - if (Input.GetKeyDown(KeyCode.Escape)) - Application.Quit(); - } - - public void OpenTutorial() - { - SceneManager.LoadScene("Tutorial"); - } - - public void OpenLevelOne() - { - SceneManager.LoadScene("Level1"); - } - - public void Quit() - { - Application.Quit(); - } -} |