ISoundHelper.cs 641 B

123456789101112131415161718192021
  1. //------------------------------------------------------------
  2. // Game Framework
  3. // Copyright © 2013-2021 Jiang Yin. All rights reserved.
  4. // Homepage: https://gameframework.cn/
  5. // Feedback: mailto:ellan@gameframework.cn
  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. }