namespace XGame.Framework.Interfaces { /// /// LateUpdate接口 /// public interface ILateUpdate { /// /// LateUpdate /// /// 流逝时间, 单位:毫秒 void LateUpdate(int millisecond); } }