You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
592 B
23 lines
592 B
2 years ago
|
using UnityEngine;
|
||
|
using UnityEngine.EventSystems;
|
||
|
using System.Collections;
|
||
|
|
||
|
namespace UIWidgets {
|
||
|
/// <summary>
|
||
|
/// List view item event data.
|
||
|
/// </summary>
|
||
|
public class ListViewItemEventData : BaseEventData {
|
||
|
/// <summary>
|
||
|
/// The new selected object.
|
||
|
/// </summary>
|
||
|
public GameObject NewSelectedObject;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Initializes a new instance of the <see cref="UIWidgets.ListViewItemEventData"/> class.
|
||
|
/// </summary>
|
||
|
/// <param name="eventSystem">Event system.</param>
|
||
|
public ListViewItemEventData(EventSystem eventSystem) : base(eventSystem)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|