Skip to content

Commit

Permalink
Update NumberWizard.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
frostie authored Dec 26, 2018
1 parent fab82fa commit b0fbf91
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Assets/Scripts/NumberWizard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ public class NumberWizard : MonoBehaviour {
[SerializeField] TextMeshProUGUI guessText;

int guess;

// Use this for initialization

void Start ()
{
StartGame();
Expand Down Expand Up @@ -45,4 +44,4 @@ void NextGuess()
guess = Random.Range(min, max + 1);
guessText.text = guess.ToString();
}
}
}

0 comments on commit b0fbf91

Please sign in to comment.