coding problem in the tanks tutorial

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 ?

i think i might have solved it !
with unity 5.3 you need to call

using UnityEngine.SceneManagement;

in line 3 of the code
which is // blanked out in the script provided and there s no reference to it in the tutorial

Thanks this solved my problem too, was wondering why the tutorial wasn’t working. Unity should update that tutorial, making sure to uncomment out “using UnityEngine.SceneManagement;”

This solved the problem for me as well. Thanks!