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