14 lines
297 B
C#
14 lines
297 B
C#
|
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
public class SkillEquipUI : BackKeyAdd
|
||
|
|
{
|
||
|
|
public BattleUI m_BattleUI;
|
||
|
|
|
||
|
|
public void Set(eUICardType type)
|
||
|
|
{
|
||
|
|
base.Set();
|
||
|
|
m_BattleUI.Set(type, ServerInfo.Ins.m_ServerData.Equip.Preset);
|
||
|
|
}
|
||
|
|
}
|