ILateUpdate.cs 337 B

1234567891011121314
  1. namespace XGame.Framework.Interfaces
  2. {
  3. /// <summary>
  4. /// LateUpdate接口
  5. /// </summary>
  6. public interface ILateUpdate
  7. {
  8. /// <summary>
  9. /// LateUpdate
  10. /// </summary>
  11. /// <param name="millisecond">流逝时间, 单位:毫秒</param>
  12. void LateUpdate(int millisecond);
  13. }
  14. }