2025-02-12 08:43:33 +08:00

34 lines
798 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/*******************************************************************************
*Create By CG
*Function
*******************************************************************************/
namespace ZXK.Framework
{
public class AudioPeopleCtrl : AudioCtrl
{
private void Start()
{
Regist();
}
private void OnDestroy()
{
UnRegister();
}
public override void AdjustVolume(float Volue)
{
base.AdjustVolume(Volue);
}
protected override void Regist()
{
base.Regist();
}
protected override void UnRegister()
{
base.UnRegister();
}
}
}