NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Debug/SROptions.Pay.cs

10 lines
220 B
C#
Raw Normal View History

2024-11-25 16:52:19 +08:00
using System.ComponentModel;
public partial class SROptions
{
[Category("微信支付"), DisplayName("调起微信支付")]
public void WxPay()
{
2024-11-26 12:29:47 +08:00
WXPayHandle.Instance.BuyGoods(1, 1);
2024-11-25 16:52:19 +08:00
}
}