[F] iOS Google login, client id

This commit is contained in:
2024-08-05 18:20:34 +08:00
parent badf4d6250
commit dd43d9db26
7 changed files with 26 additions and 6 deletions

View File

@@ -49,14 +49,16 @@ namespace tysdk
public bool IsLoggedIn => _accountInfo != null;
public void LogOut()
public void Logout()
{
UnityEngine.Debug.Log("Logout");
UnityBridgeFunc.UnityLoginOut();
_accountInfo = null;
}
public void logOutByChannel()
public void LogoutByChannel()
{
UnityEngine.Debug.Log("LogoutByChannel");
UnityBridgeFunc.UnityLoginOut();
_accountInfo = null;
}