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.
16 lines
414 B
16 lines
414 B
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)"请先关闭评分面板"); |
|
} |
|
|
|
}
|
|
|