InitResourcesCompleteCallback.cs 487 B

1234567891011121314
  1. //------------------------------------------------------------
  2. // Game Framework
  3. // Copyright © 2013-2021 loyalsoft. All rights reserved.
  4. // Homepage: http://www.game7000.com/
  5. // Feedback: http://www.game7000.com/
  6. //------------------------------------------------------------
  7. namespace GameFramework.Resource
  8. {
  9. /// <summary>
  10. /// 使用单机模式并初始化资源完成时的回调函数。
  11. /// </summary>
  12. public delegate void InitResourcesCompleteCallback();
  13. }