You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
414 B
17 lines
414 B
3 years ago
|
using UnityEngine;
|
||
|
using System.Collections;
|
||
|
using UnityEngine.UI;
|
||
|
using AX.MessageSystem;
|
||
|
using UnityEngine.EventSystems;
|
||
|
public class MaskTiShi : MonoBehaviour,IPointerClickHandler{
|
||
|
|
||
|
/// <summary>
|
||
|
/// 先关闭评判提示
|
||
|
/// </summary>
|
||
|
public void OnPointerClick(PointerEventData eventData)
|
||
|
{
|
||
|
MessageDispatcher.SendMessage("Operatinghints", (object)"请先关闭评分面板");
|
||
|
}
|
||
|
|
||
|
}
|