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

33 lines
627 B
C#
Raw Normal View History

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