About what you’d expect.
https://handsomeharvey.itch.io/number-wizard
I made a small fix so that the computer would never guess a number it’d already guessed.
public void GuessHigher()
{
min = guess;
// Random.Range is inclusive, so this will offset the values correctly
if(min<max)
min++;
NextGuess();
}
Looking forward to the next projects!