36 lines
681 B
C#
36 lines
681 B
C#
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()
|
||
{
|
||
|
||
}
|
||
/// <summary>
|
||
/// 从ios或者安卓接收code,在c#里不建议调用
|
||
/// </summary>
|
||
/// <param name="res"></param>
|
||
public void OnMobileWxLoginResp(string res)
|
||
{
|
||
Utils.showToast(gameObject, res, type: 1);
|
||
}
|
||
}
|