_TheStrongestSnail/TheStrongestSnail/Assets/Scripts/lianghaoLL/LoginItem.cs
2024-11-26 00:41:57 +08:00

33 lines
627 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class LoginItem : MonoBehaviour
{
public Transform contentItem;
public GoodIdPage41 goodId = new GoodIdPage41();
GoodIdResponse idResponse = new GoodIdResponse();
// Start is called before the first frame update
void Start()
{
Init();
}
public async void Init()
{
idResponse=await goodId.queryUnionPage();
for (int i = 0; i < idResponse.Data.DataList.Count; i++)
{
}
}
// Update is called once per frame
void Update()
{
}
}