17 lines
310 B
C#
17 lines
310 B
C#
|
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
public class AliPayConnector : MonoBehaviour
|
||
|
|
{
|
||
|
|
private void Awake()
|
||
|
|
{
|
||
|
|
DontDestroyOnLoad(gameObject);
|
||
|
|
}
|
||
|
|
|
||
|
|
public void AliPayCallback(string msg)
|
||
|
|
{
|
||
|
|
DebugUtil.Log("AliPayCallback: " + msg);
|
||
|
|
}
|
||
|
|
}
|