_TheStrongestSnail/TheStrongestSnail/Assets/Scripts/Trade/TradeUnion.cs
2024-11-25 21:10:11 +08:00

30 lines
425 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()
{
}
}