IUpdater.cs 340 B

123456789101112131415161718
  1. namespace Update.Core
  2. {
  3. /// <summary>
  4. /// 更新器接口
  5. /// </summary>
  6. public interface IUpdater
  7. {
  8. /// <summary>
  9. /// 开始异步更新
  10. /// </summary>
  11. void StartUpdate();
  12. /// <summary>
  13. /// 停止异步更新
  14. /// </summary>
  15. void StopUpdate();
  16. }
  17. }