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

16 lines
302 B
C#

using UnityEngine.EventSystems;
namespace DarkTonic.MasterAudio
{
public class EventSoundsDragHandler : EventSoundsUGUIHandler, IDragHandler, IEventSystemHandler
{
public void OnDrag(PointerEventData data)
{
if (base.eventSounds != null)
{
base.eventSounds.OnDrag(data);
}
}
}
}