_TheStrongestSnail/TheStrongestSnail/Assets/Scripts/Trade/TradeUnion.cs

29 lines
420 B
C#
Raw Normal View History

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;
// Start is called before the first frame update
void Start()
{
ReadData();
}
public void ReadData()
{
}
// Update is called once per frame
void Update()
{
}
}