_TheStrongestSnail/TheStrongestSnail/Assets/Scripts/Trade/TradeUnion.cs
2024-11-25 20:56:27 +08:00

29 lines
420 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class TradeUnion : MonoBehaviour
{
public GameObject gonghuiPrefab;
public Transform content;
// Start is called before the first frame update
void Start()
{
ReadData();
}
public void ReadData()
{
}
// Update is called once per frame
void Update()
{
}
}