14 lines
267 B
C#
14 lines
267 B
C#
|
|
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);
|
||
|
|
}
|
||
|
|
}
|