Files
MinFt/Client/Assets/Scripts/TimeManager/ITimeTickService.cs
Liubing\LB 3d8d4d18f3 first commit
先修复一下,错误的场景

删除不必要的钓场资产

修复into场景

update:更新meta文件,修复报错

update:修复资源

修复第一章节建造

修复建造第三章

update:删除多余内容

update:更新README.md

update:还原图标

update:更新README

update:更新配置
2026-04-28 02:17:22 +08:00

32 lines
749 B
C#
Raw Permalink 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 System;
using UniRx;
namespace TimeManager
{
/// <summary>
/// 统一 Tick 服务接口 - 提供秒级和分钟级的时间tick
/// </summary>
public interface ITimeTickService
{
/// <summary>
/// 每秒 tick倒计时用
/// </summary>
IObservable<long> SecondTick { get; }
/// <summary>
/// 每分钟 tick定时刷新用
/// </summary>
IObservable<long> MinuteTick { get; }
/// <summary>
/// 在 Stop 之后重新启动 Tick默认实现构造时已启动一般无需调用
/// </summary>
void Start();
/// <summary>
/// 停止服务
/// </summary>
void Stop();
}
}