using Assets.Scripts;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class LoginControllerMobile : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
private void ShowThirdLoginPage()
{
}
private void HideThirdLoginPage()
{
}
///
/// 从ios或者安卓接收code,在c#里不建议调用
///
///
public void OnMobileWxLoginResp(string res)
{
Utils.showToast(gameObject, res, type: 1);
}
}