|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class MirrorController : PermanentTriggerBase
|
|
{
|
|
protected override void OnMDown()
|
|
{
|
|
base.OnMDown();
|
|
GameManager.UIMgr.ShowPanel<UI_CheckMyselfPanel>(E_UI_Layer.Mid, (p) =>
|
|
{
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
}
|