Beispiel #1
0
    public void LoginAccount()
    {
        if (username.text == string.Empty)
        {
            Debug.Log("Please enter a username"); return;
        }
        if (password.text == string.Empty)
        {
            Debug.Log("Please enter a password"); return;
        }

        ClientTCP.PACKAGE_Login(username.text, password.text);
    }