コード例 #1
0
ファイル: Login.cs プロジェクト: vvertash/WildCardUnityClient
    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);
    }