2025-01-25 04:38:09 +08:00

22 lines
385 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Thousandto.Core.Base
{
/// <summary>
/// 一个心跳接口
/// </summary>
public interface ITicker
{
void Start();
//更新
void Update(float deltaTime);
//卸载
void Destory();
//是否有效
bool IsValid();
}
}