21 lines
350 B
C#
21 lines
350 B
C#
using QFramework;
|
||
using System.Collections;
|
||
using System.Collections.Generic;
|
||
using UnityEngine;
|
||
|
||
/// <summary>
|
||
/// 定制化倒计时UI逻辑,到时间自动发送strEvent事件
|
||
/// </summary>
|
||
public class TimeOutEvent : MonoBehaviour
|
||
{
|
||
|
||
[ContextMenu("发送事件")]
|
||
public void SendFinish()
|
||
{
|
||
|
||
|
||
VarController.Instance.Set("时间结束", 1);
|
||
}
|
||
|
||
}
|