2025-06-11 10:59:41 +08:00

21 lines
350 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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);
}
}