//--------------------------------------------------------
|
// [Author]: 第二世界
|
// [ Date ]: Wednesday, April 17, 2019
|
//--------------------------------------------------------
|
|
using System;
|
using System.Collections;
|
using System.Collections.Generic;
|
using System.Linq;
|
using UnityEngine;
|
using UnityEngine.UI;
|
|
namespace vnxbqy.UI
|
{
|
|
public class AlchemyBasicDrugWin : AlchemyDrugWin
|
{
|
|
protected override void OnPreClose()
|
{
|
base.OnPreClose();
|
if (FunctionalGuideCenter.Instance.ExistUnderwayGuide(131))
|
{
|
FunctionalGuideCenter.Instance.RemoveGuide(131);
|
}
|
if (FunctionalGuideCenter.Instance.ExistUnderwayGuide(132))
|
{
|
FunctionalGuideCenter.Instance.RemoveGuide(132);
|
}
|
}
|
}
|
}
|
|
|
|
|