ISoundHelper.cs 636 B

123456789101112131415161718192021
  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.Sound
  8. {
  9. /// <summary>
  10. /// 声音辅助器接口。
  11. /// </summary>
  12. public interface ISoundHelper
  13. {
  14. /// <summary>
  15. /// 释放声音资源。
  16. /// </summary>
  17. /// <param name="soundAsset">要释放的声音资源。</param>
  18. void ReleaseSoundAsset(object soundAsset);
  19. }
  20. }