Shegotwet/Assets/Scripts/UI/ProfileCard.cs

14 lines
267 B
C#
Raw Normal View History

2025-09-11 06:23:15 +00:00
using UnityEngine;
public class ProfileCard : CardBase
{
public override void Set<T>(T _base, int iLoop = -1, int idata = -1)
{
base.Set(_base, iLoop, idata);
}
public void OnClick_Profile()
{
LobbyUI.Ins.Show_Profile(1);
}
}