//------------------------------------------------------------ // Game Framework // Copyright © 2013-2021 loyalsoft. All rights reserved. // Homepage: http://www.game7000.com/ // Feedback: http://www.game7000.com/ //------------------------------------------------------------ using GameFramework.Sound; using UnityEngine; namespace UnityGameFramework.Runtime { /// /// 声音辅助器基类。 /// public abstract class SoundHelperBase : MonoBehaviour, ISoundHelper { /// /// 释放声音资源。 /// /// 要释放的声音资源。 public abstract void ReleaseSoundAsset(object soundAsset); } }