25 lines
749 B
C#
25 lines
749 B
C#
//------------------------------------------------------------
|
|
// Game Framework
|
|
// Copyright © 2013-2021 Jiang Yin. All rights reserved.
|
|
// Homepage: https://gameframework.cn/
|
|
// Feedback: mailto:ellan@gameframework.cn
|
|
//------------------------------------------------------------
|
|
|
|
using GameFramework.Sound;
|
|
using UnityEngine;
|
|
|
|
namespace UnityGameFramework.Runtime
|
|
{
|
|
/// <summary>
|
|
/// 声音辅助器基类。
|
|
/// </summary>
|
|
public abstract class SoundHelperBase : MonoBehaviour, ISoundHelper
|
|
{
|
|
/// <summary>
|
|
/// 释放声音资源。
|
|
/// </summary>
|
|
/// <param name="soundAsset">要释放的声音资源。</param>
|
|
public abstract void ReleaseSoundAsset(object soundAsset);
|
|
}
|
|
}
|