i m in part 7
when i run the game after updating the gamemanager script i get an error code
Assets/Scripts/Managers/GameManager.cs(69,25): error CS0103: The name `SceneManager’ does not exist in the current context
pointing at line 69
SceneManager.LoadScene(0);
so the game does not work
in the tutorial they use
Application.LoadLevel (Application.loadedLevel);
i ve tried to change it but i get an error message saying
Assets/Scripts/Managers/GameManager.cs(69,37): warning CS0618: UnityEngine.Application.LoadLevel(int)' is obsolete:
Use SceneManager.LoadScene’
what am i doing wrong ?