NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/IAP/AliPayConnector.cs

17 lines
310 B
C#
Raw Normal View History

2024-09-12 14:16:10 +08:00
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);
}
}