16 lines
302 B
C#
16 lines
302 B
C#
using UnityEngine.EventSystems;
|
|
|
|
namespace DarkTonic.MasterAudio
|
|
{
|
|
public class EventSoundsDropHandler : EventSoundsUGUIHandler, IDropHandler, IEventSystemHandler
|
|
{
|
|
public void OnDrop(PointerEventData data)
|
|
{
|
|
if (base.eventSounds != null)
|
|
{
|
|
base.eventSounds.OnDrop(data);
|
|
}
|
|
}
|
|
}
|
|
}
|