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