2024-11-25 20:56:27 +08:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
public class TradeUnion : MonoBehaviour
|
|
|
|
{
|
|
|
|
public GameObject gonghuiPrefab;
|
|
|
|
public Transform content;
|
|
|
|
|
2024-11-25 21:10:11 +08:00
|
|
|
|
2024-11-25 20:56:27 +08:00
|
|
|
// Start is called before the first frame update
|
|
|
|
void Start()
|
|
|
|
{
|
|
|
|
ReadData();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void ReadData()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Update is called once per frame
|
|
|
|
void Update()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|