namespace XGame.Framework.Time { public interface ITimeUpdate { /// /// Update /// /// 流逝时间, 单位:毫秒 void Update(int millisecond); } }