//------------------------------------------------------------ // Game Framework // Copyright © 2013-2021 Jiang Yin. All rights reserved. // Homepage: https://gameframework.cn/ // Feedback: mailto:ellan@gameframework.cn //------------------------------------------------------------ namespace GameFramework.Sound { /// /// 声音辅助器接口。 /// public interface ISoundHelper { /// /// 释放声音资源。 /// /// 要释放的声音资源。 void ReleaseSoundAsset(object soundAsset); } }