16 lines
302 B
C#
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);
|
|
}
|
|
}
|
|
}
|
|
}
|