Australian Greeting

void StartGame ()
    {
        int max = 1000;
        int min = 1;
        int guess = 500;
        Debug.Log("Oi ya drongo welcome to Number Wizard.");
        Debug.Log("Think of a number in your head between " + min + " and " + max + " and remember it.");
        Debug.Log("Is your number higher than, lower than or equal to " + guess + "?");
        Debug.Log("Up Arrow = Higher, Down Arrow = Lower, Enter = Correct");
        max = max + 1;
    }

Privacy & Terms