_TheStrongestSnail/TheStrongestSnail/Assets/Scripts/lianghaoLL/AnniyncementPanel.cs

32 lines
761 B
C#
Raw Normal View History

2024-11-27 21:48:36 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class AnniyncementPanel : MonoBehaviour
{
UserInfo userInfo = new UserInfo();
// Start is called before the first frame update
void Start()
{
Init();
}
async void Init()
{
string response = "";//<2F><><EFBFBD><EFBFBD>
//queryPlayerInfo
// string body = "{\"userId\":" + + ",\"voluteCoin\":" + int.Parse(donatePanelItem.GiftQuantity.text) + "}";
// Debug.Log(body);
// response = await web.SendRequest(web.URL + "/snail/transfer/voluteCoin", "POST", body, Global.global.CreateHeaders());
}
// Update is called once per frame
void Update()
{
}
}