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

10 lines
247 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-12-09 14:59:05 +08:00
WXPayHandle.Instance.BuyGoods("Phxh_Try_Consumable_099_15", 1);
2024-11-25 16:52:19 +08:00
}
}