123456789101112131415161718192021 |
- //------------------------------------------------------------
- // Game Framework
- // Copyright © 2013-2021 loyalsoft. All rights reserved.
- // Homepage: http://www.game7000.com/
- // Feedback: http://www.game7000.com/
- //------------------------------------------------------------
- namespace GameFramework.Sound
- {
- /// <summary>
- /// 声音辅助器接口。
- /// </summary>
- public interface ISoundHelper
- {
- /// <summary>
- /// 释放声音资源。
- /// </summary>
- /// <param name="soundAsset">要释放的声音资源。</param>
- void ReleaseSoundAsset(object soundAsset);
- }
- }
|