Files
2026-03-04 10:03:45 +08:00

16 lines
307 B
C#

using UnityEngine.EventSystems;
namespace DarkTonic.MasterAudio
{
public class EventSoundsCancelHandler : EventSoundsUGUIHandler, ICancelHandler, IEventSystemHandler
{
public void OnCancel(BaseEventData data)
{
if (base.eventSounds != null)
{
base.eventSounds.OnCancel(data);
}
}
}
}