Number wizard greeting spanglish

public class NumberWizard : MonoBehaviour {
int max = 1000;
int min = 1;
int guess = 500;
// Start is called before the first frame update
void Start()
{

    Debug.Log("Welcome to number maigo, Doggo");
    Debug.Log("choose a numero, don´t say it Doggo");
    Debug.Log("el highest numero is: " + max);
    Debug.Log("el lowest numero tu can pick is: " + min);
    Debug.Log("Tell me if your number is higher or lower than 500");
    Debug.Log("Push Up = Higher, Push Down = Lower, Push Enter= Correct");
    max = max + 1;
}
1 Like

Privacy & Terms