12 lines
173 B
C#
12 lines
173 B
C#
using System;
|
|
using UnityEngine.EventSystems;
|
|
using UnityEngine.Events;
|
|
|
|
namespace UIWidgets
|
|
{
|
|
[Serializable]
|
|
public class SelectEvent : UnityEvent<BaseEventData>
|
|
{
|
|
}
|
|
}
|