Files
tcg-client/Assets/TcgEngine/Scripts/Menu/Cards.cs
2025-08-18 17:40:47 +08:00

21 lines
337 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TcgEngine.UI
{
public class Cards : UIPanel
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}
}