2024-12-06 16:18:17 +08:00
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
public class onlyTest : MonoBehaviour
|
|
|
|
|
{
|
|
|
|
|
bool isSucceed;
|
|
|
|
|
login login = new login();
|
|
|
|
|
sendCode sendCode = new sendCode();
|
|
|
|
|
checkCode checkCode = new checkCode();
|
|
|
|
|
playerInfo playerInfo = new playerInfo();
|
|
|
|
|
checkAccount checkAccount = new checkAccount();
|
|
|
|
|
updatePlayerInfo updatePlayerInfo = new updatePlayerInfo();
|
|
|
|
|
teamInfo teamInfo = new teamInfo();
|
|
|
|
|
realNameAuthentication realNameAuthentication = new realNameAuthentication();
|
|
|
|
|
modifyTradePassword modifyTradePassword = new modifyTradePassword();
|
|
|
|
|
logout logout = new logout();
|
|
|
|
|
teamFansList teamFansList = new teamFansList();
|
|
|
|
|
goldDestroy goldDestroy = new goldDestroy();
|
|
|
|
|
cancellation cancellation = new cancellation();
|
|
|
|
|
register register = new register();
|
|
|
|
|
miningConfig miningConfig = new miningConfig();
|
|
|
|
|
treeInfo treeInfo = new treeInfo();
|
|
|
|
|
treeGetWater treeGetWater = new treeGetWater();
|
|
|
|
|
wateringTree wateringTree = new wateringTree();
|
|
|
|
|
treeTeamData treeTeamData = new treeTeamData();
|
|
|
|
|
treeFansList treeFansList = new treeFansList();
|
|
|
|
|
product_list product_List = new product_list();
|
|
|
|
|
productBuy productBuy = new productBuy();
|
|
|
|
|
createOrder createOrder = new createOrder();
|
|
|
|
|
orderVerification orderVerification = new orderVerification();
|
|
|
|
|
BillingStatistics BillingStatistics = new BillingStatistics();
|
|
|
|
|
incomeList incomeList = new incomeList();
|
|
|
|
|
async void Start()
|
|
|
|
|
{
|
2024-12-06 17:09:43 +08:00
|
|
|
|
// await login.Login();
|
2024-12-06 16:18:17 +08:00
|
|
|
|
//await sendCode.SendCode();
|
|
|
|
|
//await checkCode.CheckCode();
|
|
|
|
|
//await checkAccount.CheckAccount();
|
|
|
|
|
//await playerInfo.PalyerInfo();
|
|
|
|
|
//await updatePlayerInfo.UpdatePlayerInfo("nickname", "<22><><EFBFBD><EFBFBD>");
|
|
|
|
|
//await teamInfo.TeamInfo();
|
|
|
|
|
//await realNameAuthentication.RealNameAuthentication("<22><><EFBFBD><EFBFBD>","451287369874521475");
|
|
|
|
|
//await modifyTradePassword.ModifyTradePassword("666666","9527123");
|
|
|
|
|
//logout.Logout();
|
|
|
|
|
//teamFansList.TeamFansList();
|
|
|
|
|
//isSucceed =await goldDestroy.GoldDestroy();
|
|
|
|
|
//isSucceed = await cancellation.Cancellation();
|
|
|
|
|
//iningConfigResponse response = await miningConfig.MiningConfig(0);
|
|
|
|
|
//treeInfo.TreeInfo();
|
|
|
|
|
//treeGetWater.TreeGetWater(0, "string");
|
|
|
|
|
|
|
|
|
|
//TreeTeam treeTeam = await treeTeamData.TreeTeamData();
|
|
|
|
|
//Debug.Log("=========="+treeTeam.Data.Info.Nickname);
|
|
|
|
|
//wateringTree.WateringTree();
|
|
|
|
|
//Debug.Log("========="+isSucceed);
|
|
|
|
|
//treeFansList.TreeFansList();
|
|
|
|
|
//productListResponse productListResponse=await product_List.ProductList();
|
|
|
|
|
//Debug.Log("===========" + productListResponse.Data[1].);
|
|
|
|
|
//productBuy.BuyProduct(1);
|
|
|
|
|
//createOrder.CreateOrder(1,1,"1");
|
|
|
|
|
//orderVerification.OrderVerification(1);
|
|
|
|
|
//BillingStatistics.billingStatistics(1);
|
|
|
|
|
incomeList.IncomeList(1,10,1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Update is called once per frame
|
|
|
|
|
void Update()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|