21 lines
359 B
21 lines
359 B
4 years ago
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class EquipNumSelectMinu : BaseButton {
|
||
|
|
||
|
private EquipNumSelectPanel panel;
|
||
|
|
||
|
|
||
|
private void Start()
|
||
|
{
|
||
|
panel = transform.parent.GetComponent<EquipNumSelectPanel>();
|
||
|
}
|
||
|
|
||
|
public override void RespondFun()
|
||
|
{
|
||
|
panel.Minu();
|
||
|
}
|
||
|
|
||
|
}
|