19 lines
424 B
C#
19 lines
424 B
C#
using MotionFramework;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
namespace DefaultNamespace
|
|
{
|
|
public class CharacterInfoBtOnClick : MonoBehaviour
|
|
{
|
|
public void Start()
|
|
{
|
|
this.GetComponent<Button>().onClick.AddListener(delegate
|
|
{
|
|
|
|
|
|
// CharacterEquipManager.Instance.ChangeEquip(this.name,false);
|
|
});
|
|
}
|
|
}
|
|
} |