11 lines
221 B
C#
11 lines
221 B
C#
using UnityEngine.EventSystems;
|
|
|
|
namespace NEG.UI.UnityUi
|
|
{
|
|
public class SilentEventData : BaseEventData
|
|
{
|
|
public SilentEventData(EventSystem eventSystem) : base(eventSystem)
|
|
{
|
|
}
|
|
}
|
|
} |