diff options
Diffstat (limited to 'nGJ2019/Assets/Scripts/TutorialTimer.cs')
-rw-r--r-- | nGJ2019/Assets/Scripts/TutorialTimer.cs | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/nGJ2019/Assets/Scripts/TutorialTimer.cs b/nGJ2019/Assets/Scripts/TutorialTimer.cs deleted file mode 100644 index 899d45e..0000000 --- a/nGJ2019/Assets/Scripts/TutorialTimer.cs +++ /dev/null @@ -1,25 +0,0 @@ -using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
-using UnityEngine.SceneManagement;
-
-public class TutorialTimer : MonoBehaviour
-{
- // Start is called before the first frame update
- void Start()
- {
- StartCoroutine("Timer");
- }
-
- // Update is called once per frame
- void Update()
- {
-
- }
-
- IEnumerator Timer()
- {
- yield return new WaitForSeconds(70);
- SceneManager.LoadScene("Level1");
- }
-}
|